Files
MOHPortalTest-AllAgents-All…/qwen/nodejs/models/index.js

11 lines
241 B
JavaScript

// models/index.js
// This would typically connect to the database and export all models
// For now, we'll define a simple structure
const User = require('./User');
const Tenant = require('./Tenant');
module.exports = {
User,
Tenant
};