mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 18:17:52 -05:00
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)
|
|
}
|