mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
380 B
24 lines
380 B
4 years ago
|
package base
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"path"
|
||
|
)
|
||
|
|
||
|
// CommandEnvHolder is a struct holds the environment info of commands
|
||
|
type CommandEnvHolder struct {
|
||
|
Exec string
|
||
|
}
|
||
|
|
||
|
// CommandEnv holds the environment info of commands
|
||
|
var CommandEnv CommandEnvHolder
|
||
|
|
||
|
func init() {
|
||
|
exec, err := os.Executable()
|
||
|
if err != nil {
|
||
|
return
|
||
|
}
|
||
|
CommandEnv.Exec = path.Base(exec)
|
||
|
CommandEnv.Exec = "xray"
|
||
|
}
|