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

20 lines
305 B
Go

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