package
Version:
v0.4.6
Opens a new window with list of versions in this module.
Published: Mar 2, 2026
License: GPL-3.0
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 LoginJson struct {
Username string `json:"username" structs:"username"`
Password string `json:"password" structs:"password"`
}
type OTPJson struct {
Username string `json:"username" structs:"username"`
OTP string `json:"otp" structs:"otp"`
}
type StatusBadRequest struct {
Code int `json:"code" example:"400" structs:"code"`
Message string `json:"message" example:"Bad request" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusForbidden struct {
Code int `json:"code" example:"403" structs:"code"`
Message string `json:"message" example:"Forbidden" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusInternalServerError struct {
Code int `json:"code" example:"500" structs:"code"`
Message string `json:"message" example:"Internal server error" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusNotFound struct {
Code int `json:"code" example:"404" structs:"code"`
Message string `json:"message" example:"Not found" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusOK struct {
Code int `json:"code" example:"200" structs:"code"`
Message string `json:"message" example:"Success" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusServiceUnavailable struct {
Code int `json:"code" example:"503" structs:"code"`
Message string `json:"message" example:"Service unavailable" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
type StatusUnauthorized struct {
Code int `json:"code" example:"401" structs:"code"`
Message string `json:"message" example:"Unauthorized" structs:"message"`
Data interface{} `json:"data" structs:"data"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.