1pub mod config;
2pub mod error;
3pub mod executor;
4pub mod gadget;
5pub mod protocols;
6pub mod sdk;
7pub mod sources;
8pub use executor::run_blueprint_manager;
9
10#[cfg(test)]
11mod tests {
12 #[test]
13 fn it_works() {
14 assert_eq!(2 + 2, 4);
15 }
16}