14 lines
290 B
Go
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"`
|
|
}
|