package
Version:
v0.1.0
Opens a new window with list of versions in this module.
Published: Apr 14, 2025
License: Apache-2.0
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type LoginAPI struct {
Email string `json:"email"`
Password string `json:"password"`
}
type RegisterAPI struct {
Email string `json:"email"`
Password string `json:"password"`
}
type User struct {
ID string `gorm:"type:uuid;primaryKey" json:"id"`
Email string `gorm:"uniqueIndex;not null" json:"email"`
PasswordHash string `gorm:"not null" json:"-"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.