From e13de5bd0d921807d5981f51006d207683c82743 Mon Sep 17 00:00:00 2001 From: William Petit Date: Thu, 2 Mar 2023 17:22:27 +0100 Subject: [PATCH] feat(agent): add config sub commands --- internal/command/agent/root.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/command/agent/root.go b/internal/command/agent/root.go index c2a33af..346a634 100644 --- a/internal/command/agent/root.go +++ b/internal/command/agent/root.go @@ -2,6 +2,7 @@ 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" ) @@ -11,6 +12,7 @@ func Root() *cli.Command { Usage: "Agent related commands", Subcommands: []*cli.Command{ openwrt.Root(), + config.Root(), RunCommand(), }, }