Files
Microsoft-Rewards-Bot/api/health.js

11 lines
249 B
JavaScript

// Health check endpoint for Vercel
module.exports = function handler(req, res) {
res.json({
status: 'ok',
timestamp: new Date().toISOString(),
endpoints: {
reportError: '/api/report-error'
}
})
}