New Stripe Mico

This commit is contained in:
CHIEFSOFT\ameye
2024-10-13 23:49:37 -04:00
parent b45348353e
commit fe27875a58
17 changed files with 409 additions and 235 deletions
+14
View File
@@ -0,0 +1,14 @@
'use strict';
const cardsControllers = require('../controller/cardsController.js');
module.exports = function(app) {
app.route('/create')
.get(cardsControllers.createCard);
app.route('/activate')
.get(cardsControllers.activateCard);
// app.route('/eventSendMoney')
// .post(controller.activateCard);
};