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