v2ray-core/common/serial/interface.go

10 lines
112 B
Go
Raw Normal View History

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