forked from TrueCloudLab/frostfs-node
17 lines
268 B
Go
17 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()
|
||
|
}
|