Xray-core/main/commands/all/uuid.go

23 lines
367 B
Go
Raw Normal View History

2020-11-25 13:01:53 +02:00
package all
import (
"fmt"
2020-12-04 03:36:16 +02:00
"github.com/xtls/xray-core/common/uuid"
"github.com/xtls/xray-core/main/commands/base"
2020-11-25 13:01:53 +02:00
)
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())
}