[add]: health check

This commit was merged in pull request #14.
This commit is contained in:
VivianDee
2025-06-27 15:58:12 +01:00
parent d69bcd11ea
commit eb7c0f6221
5 changed files with 87 additions and 2 deletions
+19
View File
@@ -0,0 +1,19 @@
{
"get": {
"tags": ["System"],
"summary": "System Health Check",
"description": "Returns the current health status of the system",
"responses": {
"200": {
"description": "Successful operation",
"content": {
"application/json": {
"schema": {
"$ref": "../schemas/HealthCheckResponse.json"
}
}
}
}
}
}
}