gh2tg/api/index.js

11 lines
287 B
JavaScript
Raw Normal View History

2025-02-18 21:10:44 +00:00
const { webhook, cleanup } = require('./webhook');
module.exports = async (req, res) => {
// Check if it's a cron cleanup request
if (req.headers['x-vercel-cron']) {
return cleanup(req, res);
}
// Otherwise handle as webhook
return webhook(req, res);
};