Files
easywish/backend/docs/swagger.json

37 lines
914 B
JSON

{
"swagger": "2.0",
"info": {
"contact": {}
},
"paths": {
"/service/health": {
"get": {
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"summary": "get service health status",
"responses": {
"200": {
"description": "desc",
"schema": {
"$ref": "#/definitions/controllers.HealthStatus"
}
}
}
}
}
},
"definitions": {
"controllers.HealthStatus": {
"type": "object",
"properties": {
"healthy": {
"type": "boolean"
}
}
}
}
}