package
Version:
v0.0.0-...-a297d37
Opens a new window with list of versions in this module.
Published: Sep 12, 2024
License: MIT
Opens a new window with license information.
Imports: 9
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
func Me(c echo.Context) error
func MyName(c echo.Context) error
func Session(c echo.Context) error
func SignIn(c echo.Context) error
func SignOut(c echo.Context) error
func SignUp(c echo.Context) error
type SignInRequest struct {
EmailOrUsername string `form:"email" json:"email" validate:"required"`
Password string `form:"password" json:"password" validate:"required"`
}
type SignUpRequest struct {
Email string `form:"email" json:"email" validate:"required,email"`
Username string `form:"username" json:"username" validate:"required"`
Password string `form:"password" json:"password" validate:"required"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.