1
2
3
4
5
6
7
8
9
use std::any::Any;
use std::sync::Arc;

pub mod ty;
pub mod bean_def;
pub mod runner;

pub type Error = String;
pub(crate) type DynBean = Arc<dyn Any + Send + Sync>;