mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-01 09:03:55 -05:00
5 lines
138 B
JavaScript
5 lines
138 B
JavaScript
module.exports = function mountRestApi(app) {
|
|
var restApiRoot = app.get('restApiRoot');
|
|
app.use(restApiRoot, app.loopback.rest());
|
|
};
|