WIP: User table

This commit is contained in:
2024-04-14 00:20:44 +02:00
parent d6d54abb48
commit 92d6bc8db5
4 changed files with 30 additions and 5 deletions

View File

@ -10,7 +10,7 @@ type UUID struct {
}
func MakeUUID() UUID {
id, _ := uuid.NewRandom()
id, _ := uuid.NewV7()
return UUID { payload: id }
}