mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
337 B
20 lines
337 B
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,
|
|
},
|
|
}
|