mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-06 07:03:02 +00:00
030c9efc8c
Co-authored-by: RPRX <63339210+RPRX@users.noreply.github.com>
24 lines
469 B
Go
24 lines
469 B
Go
package base
|
|
|
|
// CommandEnvHolder is a struct holds the environment info of commands
|
|
type CommandEnvHolder struct {
|
|
// Executable name of current binary
|
|
Exec string
|
|
// commands column width of current command
|
|
CommandsWidth int
|
|
}
|
|
|
|
// 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"
|
|
}
|