package
Version:
v0.0.0-...-aa33ef3
Opens a new window with list of versions in this module.
Published: Dec 1, 2021
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Student struct {
UUID uuid.UUID `gorm:"primary_key" json:"uuid"`
Email string `gorm:"size:255;not null;" json:"email"`
Password string `gorm:"size:255;not null;" json:"password"`
Name string `gorm:"size:255;not null;" json:"name"`
RegNo string `gorm:"size:255;not null;" json:"regno"`
}
type StudentData struct {
UUID uuid.UUID `gorm:"primary_key" json:"uuid"`
Email string `gorm:"size:255;not null;" json:"email"`
Name string `gorm:"size:255;not null;" json:"name"`
RegNo string `gorm:"size:255;not null;" json:"regno"`
}
type StudentLogin struct {
Email string `json:"email"`
Password string `json:"password"`
}
type StudentReg struct {
Email string `json:"email"`
Password string `json:"password"`
Name string `json:"name"`
RegNo string `json:"regno"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.