Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Handler ¶
type Handler interface { // Login handles the login request Login(c echo.Context) error // Logout handles the logout request Logout(c echo.Context) error // Signup handles the signup request Signup(c echo.Context) error // ResetPassword handles the reset request ResetPassword(c echo.Context) error // List handles the list user request List(c echo.Context) error // Put handles the put request Put(c echo.Context) error // Post handles the post request Post(c echo.Context) error // RecoverPassword handles the recover user's password RecoverPassword(c echo.Context) error // RecoverPasswordReset handles the recover user's password reset RecoverPasswordReset(c echo.Context) error // Self handles the self request SelfGet(c echo.Context) error // SelfPut handles the self put request SelfPut(c echo.Context) error // SelfResetPassword handles the self reset request SelfResetPassword(c echo.Context) error }
Handler is the interface for the tag handlers
Click to show internal directories.
Click to hide internal directories.