@nestjs-cqrs-eventsourcing/core
Version:
Event sourcing for nestjs CQRS
13 lines (12 loc) • 490 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.createEventSourcingProviders = createEventSourcingProviders;
const view_1 = require("@nestjs-cqrs-eventsourcing/core/src/view");
const store_event_publisher_1 = require("@nestjs-cqrs-eventsourcing/core/src/store-event-publisher");
function createEventSourcingProviders() {
return [
view_1.ViewUpdater,
view_1.ViewEventBus,
store_event_publisher_1.StoreEventPublisher,
];
}