1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/lib/services/index.js

8 lines
270 B
JavaScript
Raw Normal View History

const ProjectService = require('./project-service');
const StateService = require('./state-service');
module.exports.createServices = (stores, config) => ({
projectService: new ProjectService(stores, config),
stateService: new StateService(stores, config),
});