gancio/app/model.js

15 lines
296 B
JavaScript
Raw Normal View History

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')
const Settings = require('./models/settings')
2019-02-26 00:02:42 +01:00
module.exports = {
User,
Event,
Comment,
Tag,
Place,
Notification,
EventNotification,
Settings
}