1
mirror of https://github.com/XTLS/Xray-core.git synced 2025-12-12 12:42:26 +04:00
Files
xray-core/main/commands/all/tls/tls.go

20 lines
336 B
Go
Raw Normal View History

2020-12-04 09:36:16 +08:00
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,
2025-09-16 16:40:05 +00:00
cmdLeafCertHash,
cmdECH,
2020-12-04 09:36:16 +08:00
},
}