11 lines
241 B
JavaScript
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
|
|
}; |