wins/cmd/client/host/cmd.go

17 lines
247 B
Go

package host
import (
"github.com/urfave/cli/v2"
)
func NewCommand() *cli.Command {
return &cli.Command{
Name: "hst",
Aliases: []string{"host"},
Usage: "Manage Host",
Subcommands: []*cli.Command{
getVersionCommand(),
},
}
}