mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 20:19:19 +02:00
2da476eef4
* Command: Add `wg` for wireguard key generation * Command: Merge `x25519` and `wg`
22 lines
410 B
Go
22 lines
410 B
Go
package all
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/main/commands/all/api"
|
|
"github.com/xtls/xray-core/main/commands/all/tls"
|
|
"github.com/xtls/xray-core/main/commands/base"
|
|
)
|
|
|
|
// go:generate go run github.com/xtls/xray-core/common/errors/errorgen
|
|
|
|
func init() {
|
|
base.RootCommand.Commands = append(
|
|
base.RootCommand.Commands,
|
|
api.CmdAPI,
|
|
// cmdConvert,
|
|
tls.CmdTLS,
|
|
cmdUUID,
|
|
cmdX25519,
|
|
cmdWG,
|
|
)
|
|
}
|