bouncer/internal/command/admin/layer/root.go

20 lines
305 B
Go
Raw Normal View History

2023-04-24 20:52:12 +02:00
package layer
import (
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "layer",
Usage: "Execute actions related to layers",
Subcommands: []*cli.Command{
CreateCommand(),
GetCommand(),
QueryCommand(),
UpdateCommand(),
DeleteCommand(),
},
}
}