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