forked from pokers/backend_template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.js
More file actions
21 lines (20 loc) · 788 Bytes
/
index.js
File metadata and controls
21 lines (20 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const healthcheckController = require("./healthcheckController");
const boardController = require("./boardController");
const userController = require("./accountController");
const adminController = require("./adminController");
const bookTimerController = require("./bookTimerController");
const libraryController = require('./libraryController')
const lastPageController = require("./lastPageController");
const bookShelfController = require("./bookShelfController");
const onelinerController = require("./onelinerController");
module.exports = {
...healthcheckController,
...boardController,
...userController,
...adminController,
...bookTimerController,
...bookShelfController,
...lastPageController,
...libraryController,
...onelinerController
}