William Petit ac21629d28
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: initial commit
2023-05-02 23:15:50 +02:00

17 lines
277 B
Go

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