UNPKG

curli-bus

Version:

Simple Command Bus Implementation (CQRS) for NodeJS/Typescript.

9 lines (8 loc) 270 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Middleware { execute(_command, _next, _options) { throw new Error('Execute method must be implemented in Middleware class.'); } } exports.Middleware = Middleware;