9 lines
123 B
Go
9 lines
123 B
Go
package model
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type User struct {
|
|
ID uuid.UUID
|
|
Email string
|
|
Username string
|
|
}
|