Merge branch 'main' of http://39.117.244.52:3000/kjs/ERP-node into feature/dashboard

This commit is contained in:
dohyeons
2025-10-15 11:56:36 +09:00
20 changed files with 2282 additions and 606 deletions

View File

@@ -0,0 +1,18 @@
import { Router } from "express";
import { MapDataController } from "../controllers/mapDataController";
const router = Router();
const mapDataController = new MapDataController();
/**
* 지도 데이터 라우트
*/
// 외부 DB 지도 데이터 조회
router.get("/external/:connectionId", mapDataController.getMapData);
// 내부 DB 지도 데이터 조회
router.get("/internal", mapDataController.getInternalMapData);
export default router;