All checks were successful
arcad/emissary/pipeline/head This commit looks good
19 lines
281 B
Go
19 lines
281 B
Go
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(),
|
|
DeleteCommand(),
|
|
},
|
|
}
|
|
}
|