mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-12 18:13:03 +00:00
19 lines
336 B
Go
19 lines
336 B
Go
|
package all
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/v1/main/commands/all/tlscmd"
|
||
|
"github.com/xtls/xray-core/v1/main/commands/base"
|
||
|
)
|
||
|
|
||
|
var cmdTLS = &base.Command{
|
||
|
UsageLine: "{{.Exec}} tls",
|
||
|
Short: "TLS tools",
|
||
|
Long: `{{.Exec}} tls provides tools for TLS.
|
||
|
`,
|
||
|
|
||
|
Commands: []*base.Command{
|
||
|
tlscmd.CmdCert,
|
||
|
tlscmd.CmdPing,
|
||
|
},
|
||
|
}
|