mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
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
|
|
}
|