import { Router } from 'express';
import {
  getDoctorMobileAppointmentDetail,
  getDoctorMobileNotifications,
  getDoctorMobilePatientSummary,
  getDoctorMobileTodayAgenda,
  getDoctorMobileUpcomingAgenda,
} from '../controllers/doctor-mobile.controller';

const router = Router();

router.get('/agenda/today', getDoctorMobileTodayAgenda);
router.get('/agenda/upcoming', getDoctorMobileUpcomingAgenda);
router.get('/patients/:patientId/summary', getDoctorMobilePatientSummary);
router.get('/appointments/:appointmentId', getDoctorMobileAppointmentDetail);
router.get('/notifications', getDoctorMobileNotifications);

export default router;
