Files
tinyauth/internal/types/handlers.go
Stavros 07b57fb0ca wip
2025-03-15 17:06:06 +02:00

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"`
}