17 lines
292 B
Go
17 lines
292 B
Go
|
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(),
|
||
|
},
|
||
|
}
|
||
|
}
|