feat(agent): add config sub commands
This commit is contained in:
parent
813b1519e4
commit
e13de5bd0d
|
@ -2,6 +2,7 @@ package agent
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"forge.cadoles.com/Cadoles/emissary/internal/command/agent/openwrt"
|
"forge.cadoles.com/Cadoles/emissary/internal/command/agent/openwrt"
|
||||||
|
"forge.cadoles.com/Cadoles/emissary/internal/command/config"
|
||||||
"github.com/urfave/cli/v2"
|
"github.com/urfave/cli/v2"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -11,6 +12,7 @@ func Root() *cli.Command {
|
||||||
Usage: "Agent related commands",
|
Usage: "Agent related commands",
|
||||||
Subcommands: []*cli.Command{
|
Subcommands: []*cli.Command{
|
||||||
openwrt.Root(),
|
openwrt.Root(),
|
||||||
|
config.Root(),
|
||||||
RunCommand(),
|
RunCommand(),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue