mirror of
https://github.com/LightZirconite/Microsoft-Rewards-Bot.git
synced 2026-01-09 09:06:15 +00:00
11 lines
249 B
JavaScript
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'
|
|
}
|
|
})
|
|
}
|