1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))] 2 3pub mod bitsong; 4pub mod contract; 5mod error; 6pub mod msg; 7pub mod state; 8 9mod shim; 10 11pub use crate::error::ContractError; 12 13#[cfg(test)] 14mod testing;