Files
tiny-webhook/dist/routes/webhook.route.js
Cauê Faleiros c687fd2bd1
Some checks failed
Build and Deploy / build-and-push (push) Failing after 4m14s
first commit
2026-04-09 09:45:02 -03:00

8 lines
335 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const express_1 = require("express");
const webhook_controller_1 = require("../controllers/webhook.controller");
const router = (0, express_1.Router)();
router.post('/tiny/order-status', webhook_controller_1.handleTinyOrderUpdate);
exports.default = router;