github.com/eagleql/xray-core@v1.4.4/main/commands/all/tls/tls.go (about) 1 package tls 2 3 import ( 4 "github.com/eagleql/xray-core/main/commands/base" 5 ) 6 7 // CmdTLS holds all tls sub commands 8 var CmdTLS = &base.Command{ 9 UsageLine: "{{.Exec}} tls", 10 Short: "TLS tools", 11 Long: `{{.Exec}} {{.LongName}} provides tools for TLS. 12 `, 13 Commands: []*base.Command{ 14 cmdCert, 15 cmdPing, 16 }, 17 }