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

17 lines
318 B
Go
Raw Permalink Normal View History

2024-05-17 15:44:28 +02:00
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(),
},
}
}