1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-02 00:36:03 -04:00
v2fly/common/platform/windows.go

18 lines
219 B
Go
Raw Normal View History

2015-10-09 10:48:05 -04:00
// +build windows
package platform
import (
"os"
)
type windowsEnvironment struct {
}
var environmentInstance = &windowsEnvironment{}
func (e *windowsEnvironment) ExpandEnv(s string) string {
// TODO
return s
}