William Petit f9a6a3ab2a
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-16 14:03:15 +02:00

17 lines
288 B
Go

package client
import (
"forge.cadoles.com/cadoles/bouncer/internal/command/client/proxy"
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "client",
Usage: "Admin API related commands",
Subcommands: []*cli.Command{
proxy.Root(),
},
}
}