boot_cw_plus/
lib.rs

1//! Easy to use CosmWasm-plus scripting library
2
3pub(crate) mod cw1;
4pub(crate) mod cw20;
5pub use crate::cw1::Cw1;
6pub use crate::cw20::Cw20;
7pub use registry::*;
8mod registry;