16 lines
206 B
Go
16 lines
206 B
Go
package client
|
|
|
|
import "github.com/urfave/cli/v2"
|
|
|
|
func Root() *cli.Command {
|
|
return &cli.Command{
|
|
Name: "client",
|
|
Subcommands: []*cli.Command{
|
|
Scan(),
|
|
Cast(),
|
|
Reset(),
|
|
Status(),
|
|
},
|
|
}
|
|
}
|