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

13 lines
140 B
Go

// +build windows
package platform
func ExpandEnv(s string) string {
// TODO
return s
}
func LineSeparator() string {
return "\r\n"
}