mirror of https://github.com/v2ray/v2ray-core
10 lines
112 B
Go
10 lines
112 B
Go
|
package serial
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func PointerToString(value interface{}) string {
|
||
|
return fmt.Sprint(value)
|
||
|
}
|