sing-box/cmd/sing-box/cmd_rule_set.go
2024-10-13 13:07:02 +08:00

15 lines
196 B
Go

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