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