first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-07-09 06:37:14 -04:00
commit 9ca5bd888f
22 changed files with 7047 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
'use strict';
const controller = require('./controller');
module.exports = function(app) {
app.route('/redeemoptions')
.get(controller.getFamilyBanners);
app.route('/getwallets')
.get(controller.getUsersWallets);
app.route('/getkidswallets')
.get(controller.getUsersKidsWallets);
app.route('/getescrows')
.get(controller.getUsersEscrows);
app.route('/flutterOkHook')
.post(controller.flutterOkHook);
};