mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-22 16:41:30 +00:00
15 lines
196 B
Go
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)
|
|
}
|