feat(api): add get-app endpoint

This commit is contained in:
Ali BARIN
2025-04-23 15:52:30 +00:00
parent b27a10c897
commit a04ca8f86c
4 changed files with 47 additions and 0 deletions

View File

@@ -1,8 +1,10 @@
import { Router } from 'express';
import getAppAction from '../../../controllers/api/v1/apps/get-app.ee.js';
import getAppsAction from '../../../controllers/api/v1/apps/get-apps.ee.js';
const router = Router();
router.get('/', getAppsAction);
router.get('/:appKey', getAppAction);
export default router;