feat(api): get templates endpoint

This commit is contained in:
Ali BARIN
2025-04-25 09:36:14 +00:00
parent b5ca2af0c9
commit fcb160e61a
8 changed files with 110 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
import { Router } from 'express';
import getTemplatesAction from '../../../controllers/api/v1/templates/get-templates.ee.js';
const router = Router();
router.get('/', getTemplatesAction);
export default router;