package api // ErrorResponse is returned on invalid requests. type ErrorResponse struct { Error string `json:"error"` } // HealthResponse is returned by the health endpoint. type HealthResponse struct { Status string `json:"status"` }