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

25 lines
881 B
JavaScript
Raw Normal View History

2016-11-04 09:03:13 +01:00
'use strict';
2016-11-04 09:35:53 +01:00
const { createDb } = require('./db-pool');
2016-11-05 10:16:48 +01:00
const EventStore = require('./event-store');
const FeatureToggleStore = require('./feature-toggle-store');
const StrategyStore = require('./strategy-store');
const ClientInstanceStore = require('./client-instance-store');
2016-11-05 13:36:44 +01:00
const ClientMetricsStore = require('./client-metrics-store');
const ClientStrategyStore = require('./client-strategy-store');
2016-11-04 09:03:13 +01:00
module.exports.createStores = (config) => {
2016-11-13 15:15:33 +01:00
const db = createDb(config);
2016-11-05 10:16:48 +01:00
const eventStore = new EventStore(db);
return {
db,
2016-11-05 10:16:48 +01:00
eventStore,
featureToggleStore: new FeatureToggleStore(db, eventStore),
strategyStore: new StrategyStore(db, eventStore),
clientInstanceStore: new ClientInstanceStore(db),
2016-11-05 13:36:44 +01:00
clientMetricsStore: new ClientMetricsStore(db),
clientStrategyStore: new ClientStrategyStore(db),
2016-11-05 10:16:48 +01:00
};
};