package
Version:
v0.0.0-...-af64e70
Opens a new window with list of versions in this module.
Published: May 25, 2024
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type UserLoginRequest struct {
Username string `json:"username" validate:"required,min=5,max=30"`
Password string `json:"password" validate:"required,min=5,max=30"`
}
type UserRegisterRequest struct {
Username string `json:"username" validate:"required,min=5,max=30"`
Email string `json:"email" validate:"email"`
Password string `json:"password" validate:"required,min=5,max=30"`
}
type UserResponse struct {
Token string `json:"token,omitempty"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.