feat(api): add get-apps endpoint
This commit is contained in:
8
packages/backend/src/routes/api/index.js
Normal file
8
packages/backend/src/routes/api/index.js
Normal 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;
|
||||
Reference in New Issue
Block a user