1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 10:26:10 -04:00
v2fly/common/serial/interface.go

10 lines
112 B
Go
Raw Normal View History

2016-05-24 15:55:46 -04:00
package serial
import (
"fmt"
)
func PointerToString(value interface{}) string {
return fmt.Sprint(value)
}