mirror of
https://github.com/steveiliop56/tinyauth.git
synced 2025-11-02 07:05:47 +00:00
14 lines
408 B
Go
14 lines
408 B
Go
package types
|
|
|
|
// HealthCheckResponse is the response for the health check endpoint
|
|
type HealthCheckResponse struct {
|
|
Status int `json:"status" example:"200"`
|
|
Message string `json:"message" example:"Ok"`
|
|
}
|
|
|
|
// LogoutResponse is the response for the health check endpoint
|
|
type LogoutResponse struct {
|
|
Status int `json:"status" example:"200"`
|
|
Message string `json:"message" example:"Logged out"`
|
|
}
|