UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

12 lines • 340 B
"use strict"; /** * Webhook routes */ Object.defineProperty(exports, "__esModule", { value: true }); const express_1 = require("express"); const router = (0, express_1.Router)(); router.post('/github', (req, res) => { res.json({ message: 'GitHub webhook endpoint' }); }); exports.default = router; //# sourceMappingURL=webhooks.js.map