package
Version:
v0.0.0-...-2073f86
Opens a new window with list of versions in this module.
Published: Sep 25, 2023
License: MIT
Opens a new window with license information.
Imports: 3
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type SigninUser struct {
Email string `json:"email" validate:"required,email"`
Password string `json:"password" validate:"required,min=8,max=256"`
}
type User struct {
gorm.Model
ID uuid.UUID `gorm:"type:uuid,unique"`
Name string `json:"name" validate:"required,min=3,max=16,alpha"`
Email string `json:"email" gorm:"unique" validate:"required,email"`
Password string `json:"password" validate:"required,min=8,max=256"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.