v2ray-core/common/platform/others.go

16 lines
162 B
Go
Raw Normal View History

2015-10-09 14:48:05 +00:00
// +build !windows
package platform
import (
"os"
)
2015-10-13 19:41:53 +00:00
func ExpandEnv(s string) string {
return os.ExpandEnv(s)
2015-10-09 14:48:05 +00:00
}
2015-10-13 19:41:53 +00:00
func LineSeparator() string {
return "\n"
2015-10-09 14:48:05 +00:00
}