16 lines
215 B
Go
16 lines
215 B
Go
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(),
|
|
},
|
|
}
|
|
}
|