github.com/sagernet/sing-box@v1.9.0-rc.20/cmd/sing-box/cmd_rule_set.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/spf13/cobra"
     5  )
     6  
     7  var commandRuleSet = &cobra.Command{
     8  	Use:   "rule-set",
     9  	Short: "Manage rule sets",
    10  }
    11  
    12  func init() {
    13  	mainCommand.AddCommand(commandRuleSet)
    14  }