github.com/xmplusdev/xray-core@v1.8.10/main/commands/all/commands.go (about)

     1  package all
     2  
     3  import (
     4  	"github.com/xmplusdev/xray-core/main/commands/all/api"
     5  	"github.com/xmplusdev/xray-core/main/commands/all/tls"
     6  	"github.com/xmplusdev/xray-core/main/commands/base"
     7  )
     8  
     9  // go:generate go run github.com/xmplusdev/xray-core/common/errors/errorgen
    10  
    11  func init() {
    12  	base.RootCommand.Commands = append(
    13  		base.RootCommand.Commands,
    14  		api.CmdAPI,
    15  		// cmdConvert,
    16  		tls.CmdTLS,
    17  		cmdUUID,
    18  		cmdX25519,
    19  		cmdWG,
    20  	)
    21  }