mirror of https://github.com/v2ray/v2ray-core
18 lines
219 B
Go
18 lines
219 B
Go
![]() |
// +build windows
|
||
|
|
||
|
package platform
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
type windowsEnvironment struct {
|
||
|
}
|
||
|
|
||
|
var environmentInstance = &windowsEnvironment{}
|
||
|
|
||
|
func (e *windowsEnvironment) ExpandEnv(s string) string {
|
||
|
// TODO
|
||
|
return s
|
||
|
}
|