Agromind-backend / backend /controllers /videoCallController.js
gh-action-hf-auto
auto: sync backend from github@32fb9685
8a6248c
// controllers/videoCallController.js
export const startCall = (req, res) => {
const { appointmentId } = req.body;
res.status(200).json({ message: `Call started for appointment ${appointmentId}` });
};
export const joinCall = (req, res) => {
const { appointmentId } = req.body;
res.status(200).json({ message: `Farmer joined call for appointment ${appointmentId}` });
};