feat: add layer definition api
This commit is contained in:
15
internal/command/admin/definition/layer/root.go
Normal file
15
internal/command/admin/definition/layer/root.go
Normal file
@ -0,0 +1,15 @@
|
||||
package layer
|
||||
|
||||
import (
|
||||
"github.com/urfave/cli/v2"
|
||||
)
|
||||
|
||||
func Root() *cli.Command {
|
||||
return &cli.Command{
|
||||
Name: "layer",
|
||||
Usage: "Execute actions related to layer definitions",
|
||||
Subcommands: []*cli.Command{
|
||||
QueryCommand(),
|
||||
},
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user