Files
automatisch/packages/backend/src/routes/paddle.ee.js
2024-02-26 01:03:15 +01:00

10 lines
260 B
JavaScript

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;