mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 12:09:19 +02:00
23 lines
373 B
Go
23 lines
373 B
Go
|
package all
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/xtls/xray-core/v1/common/uuid"
|
||
|
"github.com/xtls/xray-core/v1/main/commands/base"
|
||
|
)
|
||
|
|
||
|
var cmdUUID = &base.Command{
|
||
|
UsageLine: "{{.Exec}} uuid",
|
||
|
Short: "Generate new UUIDs",
|
||
|
Long: `
|
||
|
Generate new UUIDs.
|
||
|
`,
|
||
|
Run: executeUUID,
|
||
|
}
|
||
|
|
||
|
func executeUUID(cmd *base.Command, args []string) {
|
||
|
u := uuid.New()
|
||
|
fmt.Println(u.String())
|
||
|
}
|