Files
gancio/app/model.js

5 lines
224 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')
2019-02-26 00:02:42 +01:00
2019-03-11 00:20:37 +01:00
module.exports = { User, Event, Comment, Tag, Place, Notification, EventNotification }