feat(api): add get-folders endpoint

This commit is contained in:
Ali BARIN
2025-04-23 17:28:20 +00:00
parent d633d8b3d6
commit 3b240617c2
6 changed files with 89 additions and 1 deletions

View File

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