UNPKG

recoder-code

Version:

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

13 lines (9 loc) • 206 B
/** * Webhook routes */ import { Router } from 'express'; const router = Router(); router.post('/github', (req, res) => { res.json({ message: 'GitHub webhook endpoint' }); }); export default router;