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

12 lines
214 B
JavaScript

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