Nuxt/examples/with-feathers/src/services/index.js

11 lines
203 B
JavaScript
Raw Normal View History

2017-10-31 13:43:55 +00:00
'use strict'
const authentication = require('./authentication')
const user = require('./user')
2017-01-11 19:13:38 +00:00
2017-10-31 13:43:55 +00:00
module.exports = function () {
const app = this
app.configure(authentication)
app.configure(user)
}