sing-box/cmd/sing-box/cmd_rule_set.go

15 lines
196 B
Go
Raw Normal View History

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