feat: update health check API response and integrate versioning in Layout component

This commit is contained in:
Wikid82
2025-11-20 09:54:49 -05:00
parent cbfd1c08b2
commit 9d39241c61
8 changed files with 47 additions and 70 deletions
+3
View File
@@ -3,6 +3,9 @@ import client from './client';
export interface HealthResponse {
status: string;
service: string;
version: string;
git_commit: string;
build_time: string;
}
export const checkHealth = async (): Promise<HealthResponse> => {