File size: 260 Bytes
3206347 |
1 2 3 4 5 6 7 8 9 10 |
import { Router } from 'express';
import asyncHandler from 'express-async-handler';
import webhooksHandler from '../controllers/paddle/webhooks.ee.js';
const router = Router();
router.post('/webhooks', asyncHandler(webhooksHandler));
export default router;
|