Files
tenante-api/server/response.go
2025-08-11 22:15:32 +02:00

14 lines
290 B
Go

package server
type HealthCheckResponse struct {
Database bool `json:"database"`
API bool `json:"api"`
Status string `json:"status"`
}
type InternalServerErrorResponse struct {
Status string `json:"status"`
Code int `json:"code"`
Message string `json:"message"`
}