1
mirror of https://github.com/XTLS/Xray-core.git synced 2025-12-12 04:34:41 +04:00
Files
xray-core/main/commands/all/tls/tls.go
风扇滑翔翼 ef1d468f73 Refactor
2025-09-16 16:40:05 +00:00

20 lines
336 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,
cmdLeafCertHash,
cmdECH,
},
}