2019-02-26 00:02:42 +01:00
|
|
|
const User = require('./models/user')
|
2019-03-11 00:20:37 +01:00
|
|
|
const { Event, Comment, Tag, Place, Notification, EventNotification } = require('./models/event')
|
2019-03-12 01:16:52 +01:00
|
|
|
const Settings = require('./models/settings')
|
2019-02-26 00:02:42 +01:00
|
|
|
|
2019-03-12 01:16:52 +01:00
|
|
|
module.exports = {
|
|
|
|
User,
|
|
|
|
Event,
|
|
|
|
Comment,
|
|
|
|
Tag,
|
|
|
|
Place,
|
|
|
|
Notification,
|
|
|
|
EventNotification,
|
|
|
|
Settings
|
|
|
|
}
|