mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 09:17:55 -04:00
16 lines
162 B
Go
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"
|
|
}
|