Peter Kurfer
9ea9a8f658
Some checks failed
Go build / build (push) Failing after 1m58s
- setup ent scheme - add command to create users - document API - add helpers to create migrations - add command to run migrations - add basic compose file
12 lines
160 B
Go
12 lines
160 B
Go
package domain
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type User struct {
|
|
ID uuid.UUID
|
|
Email string
|
|
GivenName string
|
|
Surname string
|
|
|
|
IsAdmin bool
|
|
}
|