-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from CosmWasm/multi-test-rename
Rename Router -> App
- Loading branch information
Showing
3 changed files
with
34 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
mod app; | ||
mod bank; | ||
mod handlers; | ||
mod test_helpers; | ||
mod transactions; | ||
mod wasm; | ||
|
||
pub use crate::app::{parse_contract_addr, App, AppCache, AppOps}; | ||
pub use crate::bank::{Bank, BankCache, BankOps, SimpleBank}; | ||
pub use crate::handlers::{parse_contract_addr, Router, RouterCache, RouterOps}; | ||
pub use crate::wasm::{next_block, Contract, ContractWrapper, WasmCache, WasmOps, WasmRouter}; |