2025-03-29 17:47:16 +05:30
|
|
|
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;
|