mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-13 20:28:32 +10:00
17 lines
228 B
Go
17 lines
228 B
Go
package main
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var commandToolsFlagOutbound string
|
|
|
|
var commandTools = &cobra.Command{
|
|
Use: "tools",
|
|
Short: "Experimental tools",
|
|
}
|
|
|
|
func init() {
|
|
mainCommand.AddCommand(commandTools)
|
|
}
|