1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/common/serial/interface.go
2016-05-24 21:55:46 +02:00

10 lines
112 B
Go

package serial
import (
"fmt"
)
func PointerToString(value interface{}) string {
return fmt.Sprint(value)
}