mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 14:43:03 +00:00
20 lines
337 B
Go
20 lines
337 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,
|
|
cmdCertChainHash,
|
|
cmdECH,
|
|
},
|
|
}
|