feat: add health check page (#244)

This commit is contained in:
kimatata
2025-07-12 18:33:45 +09:00
committed by GitHub
parent ed1e90c714
commit f3ebaafdf6
12 changed files with 176 additions and 12 deletions

8
frontend/types/health.ts Normal file
View File

@@ -0,0 +1,8 @@
export type HealthMessages = {
health_check: string;
status: string;
ok: string;
error: string;
api_server: string;
unittcms_version: string;
};