Merged changes from o10aupva/main

Replit-Task-Id: 96838fc6-bf00-4a8d-ae18-84ba08feec56
This commit is contained in:
joachimhummel
2026-05-15 16:11:01 +00:00
parent 83a3bf9c62
commit e9f0d1ed98
18 changed files with 612 additions and 140 deletions

View File

@@ -1,8 +1,10 @@
import { Router, type IRouter } from "express";
import healthRouter from "./health";
import contactRouter from "./contact";
const router: IRouter = Router();
router.use(healthRouter);
router.use(contactRouter);
export default router;