hex-architect
Version:
A collection of components for creating hexagonal architecture with ports and adapters which allows for clean separation of the application and domain layers from the execution environment.
17 lines (16 loc) • 480 B
TypeScript
export * from './command-bus';
export * from './command-handler';
export * from './command';
export * from './domain-event';
export * from './event-bus';
export * from './event';
export * from './in-port';
export * from './message-bus';
export * from './message-handler';
export * from './message';
export * from './out-port';
export * from './port';
export * from './query-bus';
export * from './query-handler';
export * from './query';
export * from './result';