1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/commands/all/tls.go

19 lines
330 B
Go

package all
import (
"github.com/v2fly/v2ray-core/v4/commands/all/tlscmd"
"github.com/v2fly/v2ray-core/v4/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,
},
}