2023-12-01 05:24:12 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
|
|
|
var commandRuleSet = &cobra.Command{
|
|
|
|
Use: "rule-set",
|
2024-06-25 16:45:10 +00:00
|
|
|
Short: "Manage rule-sets",
|
2023-12-01 05:24:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
mainCommand.AddCommand(commandRuleSet)
|
|
|
|
}
|