-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
11 lines (10 loc) · 954 Bytes
/
Copy pathindex.js
File metadata and controls
11 lines (10 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
const { app, dbcon, mongo, neo4j } = require('./core/app.config.js').AppConfig();
require('./controllers/main.controller.js').MainController(app, dbcon, mongo);
require('./controllers/state.controller.js').StateController(app, dbcon, mongo, neo4j);
require('./controllers/populatedPlace.controller.js').PopulatedPlaceController(app, dbcon, mongo, neo4j);
require('./controllers/language.controller.js').LanguageController(app, dbcon, mongo, neo4j);
require('./controllers/highEducationInstitute.controller').HighEducationInstituteController(app, dbcon, mongo, neo4j);
require('./controllers/instituteType.controller.js').InstituteTypeController(app, dbcon, mongo, neo4j);
require('./controllers/ownershipType.controller.js').OwnershipTypeController(app, dbcon, mongo, neo4j);
require('./controllers/document.controller.js').DocumentController(app, dbcon, mongo);
require('./controllers/graph.controller.js').GraphController(app, dbcon, neo4j);