feat(api): add get flow endpoint

This commit is contained in:
Ali BARIN
2025-04-24 22:47:45 +00:00
parent e3b0eaa250
commit fecf434c28
5 changed files with 110 additions and 0 deletions

View File

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