Add rule-set

This commit is contained in:
世界
2023-12-01 13:24:12 +08:00
parent 2e4c3067f2
commit e4162b28f1
51 changed files with 2973 additions and 265 deletions

View File

@@ -0,0 +1,14 @@
package main
import (
"github.com/spf13/cobra"
)
var commandRuleSet = &cobra.Command{
Use: "rule-set",
Short: "Manage rule sets",
}
func init() {
mainCommand.AddCommand(commandRuleSet)
}