@mbc-cqrs-serverless/core
Version:
CQRS and event base core
13 lines • 382 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationEvent = void 0;
class NotificationEvent {
fromSqsRecord(record) {
Object.assign(this, record, {
source: record.eventSourceARN,
});
return this;
}
}
exports.NotificationEvent = NotificationEvent;
//# sourceMappingURL=notification.event.js.map