dendrite_lib/lib.rs
1//! # Dendrite
2//!
3//! Crate `dendrite` is a [Rust](https://www.rust-lang.org) library to connect to [AxonServer](https://axoniq.io/product-overview/axon-server).
4//!
5//! See the GitHub project [rustigaan/archetype-rust-axon](https://github.com/rustigaan/archetype-rust-axon) for an example of how to use this code.
6
7pub mod axon_server;
8pub mod axon_utils;
9pub mod intellij_work_around;
10
11#[macro_export]
12macro_rules! register {
13 ($registry:ident, $handler:ident) => {
14 $registry.register(&$handler)
15 };
16}