16 lines
268 B
Go
16 lines
268 B
Go
package ape
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
var Cmd = &cobra.Command{
|
|
Use: "ape",
|
|
Short: "Section for APE configuration commands",
|
|
}
|
|
|
|
func init() {
|
|
initAddRuleChainCmd()
|
|
initRemoveRuleChainCmd()
|
|
initListRuleChainsCmd()
|
|
initSetAdminCmd()
|
|
initGetAdminCmd()
|
|
}
|