mirror of
https://gitee.com/energye/energy.git
synced 2024-12-02 03:37:48 +08:00
14 lines
267 B
Go
14 lines
267 B
Go
package cmd
|
|
|
|
type CommandConfig struct {
|
|
Install Install `command:"install"`
|
|
Package Package `command:"package"`
|
|
}
|
|
|
|
type Install struct {
|
|
Path string `short:"m" long:"path" description:"Installation directory Default current directory"`
|
|
}
|
|
|
|
type Package struct {
|
|
}
|