18 lines
303 B
Go
18 lines
303 B
Go
|
package agent
|
||
|
|
||
|
import (
|
||
|
"forge.cadoles.com/Cadoles/emissary/internal/command/agent/openwrt"
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
func Root() *cli.Command {
|
||
|
return &cli.Command{
|
||
|
Name: "agent",
|
||
|
Usage: "Agent related commands",
|
||
|
Subcommands: []*cli.Command{
|
||
|
openwrt.Root(),
|
||
|
RunCommand(),
|
||
|
},
|
||
|
}
|
||
|
}
|