William Petit 85ccf2e1df
All checks were successful
arcad/emissary/pipeline/head This commit looks good
feat: agent specifications query and get endpoints
2024-03-13 16:07:16 +01:00

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(),
},
}
}