feat(agent): add config sub commands

This commit is contained in:
wpetit 2023-03-02 17:22:27 +01:00
parent 813b1519e4
commit e13de5bd0d
1 changed files with 2 additions and 0 deletions

View File

@ -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(),
}, },
} }