refractor code,

This commit is contained in:
root
2026-05-21 12:35:49 -04:00
parent e74681e810
commit f009ca10c6
158 changed files with 215801 additions and 5884 deletions
@@ -0,0 +1,13 @@
import { Router } from 'express'
const router = Router()
router.post('/clerk', (_req, res) => {
res.status(410).json({
error: 'disabled',
message: 'Clerk webhooks are disabled because Clerk has been removed from this project.',
statusCode: 410,
})
})
export default router