Files
sing-box-extended-mirror/cmd/sing-box/cmd_rule_set.go
T

15 lines
196 B
Go
Raw Normal View History

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