1use std::any::Any; 2use std::sync::Arc; 3 4pub mod ty; 5pub mod bean_def; 6pub mod runner; 7 8pub type Error = String; 9pub(crate) type DynBean = Arc<dyn Any + Send + Sync>;