anycoder-e7ad4b16 / pages /api /emails.js
hailsbop's picture
Upload pages/api/emails.js with huggingface_hub
2cd4928 verified
Raw
History Blame Contribute Delete
250 Bytes
export default function handler(req, res) {
if (req.method === 'GET') {
res.status(200).json({ message: 'This would typically fetch emails from the Gmail OAuth API' });
} else {
res.status(405).json({ error: 'Method not allowed' });
}
}