1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/common/platform/windows.go

13 lines
140 B
Go
Raw Normal View History

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