energy/cmd/command.go
2022-11-09 11:50:59 +08:00

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 {
}