import * as express from "express"; import { templateService } from "../controller/visualization/templateService.ts"; const router = express.Router(); router.post("/template/save", templateService.AddTemplate); router.get("/templateData/:organization", templateService.GetTemplate); export default router;