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