uuid.go 98 B

1234567
  1. package uuid
  2. import "github.com/google/uuid"
  3. func GenUUID() string {
  4. return uuid.NewString()
  5. }