| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import Ember from 'ember'; import StoreStores from './store/stores'; import StoreFactoryCache from './store/factory-cache'; import StoreInternalFactory from './store/internal-factory'; import StoreModelFactory from './store/model-factory'; import StoreDatabases from './store/databases'; import StoreDocuments from './store/documents'; export default Ember.Object.extend( StoreStores, StoreFactoryCache, StoreInternalFactory, StoreModelFactory, StoreDatabases, StoreDocuments ); |