bvs_library/
testing.rs

1#![cfg(not(target_arch = "wasm32"))]
2// Only exposed on unit and integration testing, not compiled to Wasm.
3
4mod account;
5mod contract;
6
7pub use account::*;
8pub use contract::*;