Xray-core/main/commands/all/tls.go

19 lines
336 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package all
import (
"github.com/xtls/xray-core/v1/main/commands/all/tlscmd"
"github.com/xtls/xray-core/v1/main/commands/base"
)
var cmdTLS = &base.Command{
UsageLine: "{{.Exec}} tls",
Short: "TLS tools",
Long: `{{.Exec}} tls provides tools for TLS.
`,
Commands: []*base.Command{
tlscmd.CmdCert,
tlscmd.CmdPing,
},
}