Xray-core/main/commands/all/tls/tls.go
2020-12-04 09:36:16 +08:00

18 lines
307 B
Go

package tls
import (
"github.com/xtls/xray-core/main/commands/base"
)
// CmdTLS holds all tls sub commands
var CmdTLS = &base.Command{
UsageLine: "{{.Exec}} tls",
Short: "TLS tools",
Long: `{{.Exec}} {{.LongName}} provides tools for TLS.
`,
Commands: []*base.Command{
cmdCert,
cmdPing,
},
}