mirror of
https://github.com/rgrgogu/new_starr.git
synced 2026-09-27 00:12:54 +08:00
9 lines
289 B
JavaScript
9 lines
289 B
JavaScript
const express = require('express');
|
|
const router = express.Router();
|
|
|
|
const { getUsersDashboard, getGroupsDashboard } = require('../../controllers/admin/dashboard.controller');
|
|
|
|
router.get('/users', getUsersDashboard);
|
|
router.get('/groups', getGroupsDashboard);
|
|
|
|
module.exports = router; |