Xray-core/main/commands/base/env.go

27 lines
481 B
Go
Raw Normal View History

2020-11-25 11:01:53 +00:00
package base
import (
"os"
"path"
)
// CommandEnvHolder is a struct holds the environment info of commands
type CommandEnvHolder struct {
2020-12-04 01:36:16 +00:00
// Excutable name of current binary
2020-11-25 11:01:53 +00:00
Exec string
2020-12-04 01:36:16 +00:00
// commands column width of current command
CommandsWidth int
2020-11-25 11:01:53 +00:00
}
// 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"
}