14 lines
212 B
Go
14 lines
212 B
Go
|
package inbound
|
||
|
|
||
|
import (
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
func Root() *cli.Command {
|
||
|
return &cli.Command{
|
||
|
Name: "agent",
|
||
|
Usage: "Inbounds related commands",
|
||
|
Subcommands: []*cli.Command{},
|
||
|
}
|
||
|
}
|