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