mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03: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)
|
|
}
|