package uci import ( "github.com/urfave/cli/v2" ) func Root() *cli.Command { return &cli.Command{ Name: "uci", Usage: "UCI related commands", Subcommands: []*cli.Command{ TransformCommand(), }, } }