Skip to main content

camel_bean/
lib.rs

1mod error;
2mod processor;
3mod registry;
4
5pub use error::BeanError;
6pub use processor::BeanProcessor;
7pub use registry::BeanRegistry;
8
9// Re-export for macro users
10pub use async_trait::async_trait;
11pub use camel_bean_macros::{Bean, bean_impl, handler};