mirror of
				https://github.com/v2fly/v2ray-core.git
				synced 2025-11-03 19:29:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			330 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package all
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/v2fly/v2ray-core/v4/commands/all/tlscmd"
 | 
						|
	"github.com/v2fly/v2ray-core/v4/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,
 | 
						|
	},
 | 
						|
}
 |