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 [dendrite2go/archetype-rust-axon](https://github.com/dendrite2go/archetype-rust-axon) for an example of how to use this code.

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

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