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
2020-11-23 21:47:51 +01:00

8 lines
270 B
JavaScript

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),
});