19 lines
281 B
Go
Raw Permalink Normal View History

package spec
import (
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "spec",
Usage: "Specifications related commands",
Subcommands: []*cli.Command{
GetCommand(),
QueryCommand(),
UpdateCommand(),
2023-03-13 10:44:58 +01:00
DeleteCommand(),
},
}
}