import { Router } from 'express';
import { getRecentNotifications, markNotificationAsSeen } from '../controllers/NotificationController';
const router = Router();

router.get('/get-recent-notifications', getRecentNotifications );
router.post('/notifications-mark-seen', markNotificationAsSeen);


export default router;