feat(admin): add add-music api

This commit is contained in:
2026-05-25 19:45:22 +07:00
parent 9d7114e2f1
commit 88dcaea7af
12 changed files with 265 additions and 1 deletions
+2
View File
@@ -1,5 +1,6 @@
import { Router } from 'express';
import authRoutes from './auths.js';
import adminRoutes from './admins.js';
const router = Router();
@@ -14,5 +15,6 @@ router.get('/health', (req, res) => {
});
router.use('/auth', authRoutes);
router.use('/admin', adminRoutes);
export default router;