dendrite_lib 0.14.1

Event Sourcing and CQRS in Rust with AxonServer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Dendrite
//!
//! Crate `dendrite` is a [Rust](https://www.rust-lang.org) library to connect to [AxonServer](https://axoniq.io/product-overview/axon-server).
//!
//! See the GitHub project [rustigaan/archetype-rust-axon](https://github.com/rustigaan/archetype-rust-axon) for an example of how to use this code.

pub mod axon_server;
pub mod axon_utils;
pub mod intellij_work_around;

#[macro_export]
macro_rules! register {
    ($registry:ident, $handler:ident) => {
        $registry.register(&$handler)
    };
}