arcast/internal/command/client/root.go

16 lines
206 B
Go
Raw Normal View History

2023-12-13 20:07:22 +01:00
package client
import "github.com/urfave/cli/v2"
func Root() *cli.Command {
return &cli.Command{
Name: "client",
Subcommands: []*cli.Command{
Scan(),
Cast(),
Reset(),
Status(),
},
}
}