Files
WrenchBoardWallet/api/routes.js
T
CHIEFSOFT\ameye 4f687da038 kids wallet
2024-03-20 12:55:09 -04:00

18 lines
396 B
JavaScript

'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);
};