package openwrt import ( "forge.cadoles.com/Cadoles/emissary/internal/command/agent/openwrt/uci" "github.com/urfave/cli/v2" ) func Root() *cli.Command { return &cli.Command{ Name: "openwrt", Usage: "OpenWRT related commands", Subcommands: []*cli.Command{ uci.Root(), }, } }