emissary/internal/command/api/agent/spec/root.go

18 lines
262 B
Go
Raw 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(),
UpdateCommand(),
2023-03-13 10:44:58 +01:00
DeleteCommand(),
},
}
}