2024-04-07 11:08:05 +08:00

8 lines
98 B
Go

package uuid
import "github.com/google/uuid"
func GenUUID() string {
return uuid.NewString()
}