feat(api): init hono with rest and trpc

This commit is contained in:
2025-11-09 01:53:24 +02:00
parent 2b5482e9f5
commit d72f3871a4
11 changed files with 311 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
import { checkHealth as checkDbHealth } from "@basango/db/utils/health";
export async function checkHealth(): Promise<void> {
await checkDbHealth();
}