mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
18 lines
307 B
Go
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,
|
||
|
},
|
||
|
}
|