mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-10 06:16:53 -05:00
19 lines
314 B
Go
19 lines
314 B
Go
package tls
|
|
|
|
import (
|
|
"github.com/v2fly/v2ray-core/v4/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,
|
|
},
|
|
}
|