first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-12-18 02:39:56 -05:00
commit 653ef00ca6
14 changed files with 4451 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
'use strict';
const controller = require('./controller');
module.exports = function(app) {
app.route('/famresourcecat')
.get(controller.getFamilyResourceCat);
app.route('/homebanners')
.get(controller.getResourceCat);
// app.route('/askopenai')
// .get(controller.askOpenAi);
};