This commit is contained in:
lik
2026-05-31 17:36:22 +08:00
parent 88aa49e4c5
commit dd7f8d2e97
5 changed files with 5557 additions and 39 deletions

View File

@@ -26,7 +26,9 @@ function registerRoutes(app) {
router.get("/service", handlerResource.getServices.bind(handlerResource));
router.get("/agreement", handlerResource.getAgreement.bind(handlerResource));
router.get("/hospital-contact", handlerResource.getHospitalContact.bind(handlerResource));
router.get("/hospital-info", handlerResource.getHospitalInfo.bind(handlerResource));
router.get("/hospital-ranking", handlerResource.getHospitalRanking.bind(handlerResource));
router.get("/department-rankings", handlerResource.getDepartmentRankings.bind(handlerResource));
app.use(router.routes());
app.use(router.allowedMethods());