Merged in feature/health (pull request #163)

Health Endpoint

* health
This commit is contained in:
Michael McGuinness
2025-06-09 23:30:06 +00:00
parent cfae1f9016
commit 76e4f5790f
18 changed files with 489 additions and 79 deletions
+26
View File
@@ -27,8 +27,34 @@ tags:
description: Operations related to exports
- name: AuthService
description: Operations related to authentication
- name: HealthService
description: Operations related to health
paths:
/health:
get:
operationId: isHealthy
tags:
- HealthService
summary: Provide health endpoint
description: See if the service is up and running
security:
- {}
responses:
"200":
description: Healthy service.
headers:
RateLimit:
$ref: "#/components/headers/RateLimit"
"400":
$ref: "#/components/responses/InvalidRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"429":
$ref: "#/components/responses/TooManyRequests"
"500":
$ref: "#/components/responses/InternalError"
/client:
post:
operationId: createClient