bouncer/internal/command/api/inbound/root.go

14 lines
212 B
Go
Raw Normal View History

2023-04-24 20:52:12 +02:00
package inbound
import (
"github.com/urfave/cli/v2"
)
func Root() *cli.Command {
return &cli.Command{
Name: "agent",
Usage: "Inbounds related commands",
Subcommands: []*cli.Command{},
}
}