camel-bean 0.6.1

Beans/Registry system for rust-camel
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod error;
mod processor;
mod registry;

pub use error::BeanError;
pub use processor::BeanProcessor;
pub use registry::BeanRegistry;

// Re-export for macro users
pub use async_trait::async_trait;
pub use camel_bean_macros::{Bean, bean_impl, handler};