diff options
Diffstat (limited to 'app.js')
-rw-r--r-- | app.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3,6 +3,7 @@ const express = require('@feathersjs/express'); const socketio = require('@feathersjs/socketio'); const cors = require('cors') +const services = require('./services'); const app = express(feathers()); @@ -15,6 +16,7 @@ app.use(cors()); app.configure(express.rest()); app.configure(socketio()); +app.configure(services); module.exports = app; |