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

16 lines
239 B
Go
Raw Normal View History

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