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