Initial commit

This commit is contained in:
mstfyldz
2026-08-08 17:19:28 +03:00
commit df70520ede
19 changed files with 3926 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { Router } from 'express';
import { requireAuth } from '../middleware/auth';
import { chatMessage } from '../controllers/chat.controller';
const router = Router();
router.post('/:caseId/message', requireAuth, chatMessage);
export default router;