feat(api): add get-apps endpoint

This commit is contained in:
Ali BARIN
2025-04-23 12:06:06 +00:00
parent e95ffb44e4
commit 0ea28d70ad
8 changed files with 193 additions and 65 deletions

View File

@@ -0,0 +1,8 @@
import { Router } from 'express';
import appsRouter from './v1/apps.js';
const router = Router();
router.use('/v1/apps', appsRouter);
export default router;