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