Nuxt/examples/with-feathers/src/services/index.js
2017-10-31 21:43:55 +08:00

11 lines
203 B
JavaScript

'use strict'
const authentication = require('./authentication')
const user = require('./user')
module.exports = function () {
const app = this
app.configure(authentication)
app.configure(user)
}