14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
const User = require('./models/user')
|
|
const { Event, Comment, Tag, Place, Notification, EventNotification } = require('./models/event')
|
|
const Settings = require('./models/settings')
|
|
|
|
module.exports = {
|
|
User,
|
|
Event,
|
|
Comment,
|
|
Tag,
|
|
Place,
|
|
Notification,
|
|
EventNotification,
|
|
Settings
|
|
}
|