feat(api): add get executions endpoint

This commit is contained in:
Ali BARIN
2025-04-24 14:45:39 +00:00
parent 23e9deee90
commit 6ecb05db3e
8 changed files with 347 additions and 5 deletions

View File

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