a3s-boot 0.1.3

Adapter-first modular Rust web framework for A3S inspired by Nest.js
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod bus;
mod context;
mod definitions;
mod erased;
mod handlers;
mod messages;
mod module;

pub use bus::{CommandBus, EventBus, QueryBus};
pub use context::CqrsContext;
pub use definitions::{CommandHandlerDefinition, EventHandlerDefinition, QueryHandlerDefinition};
pub use handlers::{CommandHandler, EventHandler, QueryHandler};
pub use messages::{Command, CqrsEvent, Query};
pub use module::CqrsModule;