Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IManager ¶
type IManager interface {
// AppendEnv 向环境变量中追加一个值
AppendEnv(key, value string) error
// RemoveEnv 从环境变量中移除一个值
RemoveEnv(key, value string) error
// GetEnv 获取环境变量的值
GetEnv(key string) (string, error)
// SetEnv 设置环境变量的值
SetEnv(key, value string) error
// DeleteEnv 删除环境变量
DeleteEnv(key string) error
}
Click to show internal directories.
Click to hide internal directories.