1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/common/platform/others.go
2015-10-13 21:41:53 +02:00

16 lines
162 B
Go

// +build !windows
package platform
import (
"os"
)
func ExpandEnv(s string) string {
return os.ExpandEnv(s)
}
func LineSeparator() string {
return "\n"
}