13 lines
140 B
Go
Raw Normal View History

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