Skip to content

Commit

Permalink
Merge pull request #43 from CosmWasm/expose_modules
Browse files Browse the repository at this point in the history
Expose Gov and Distribution traits
  • Loading branch information
hashedone authored Jun 7, 2023
2 parents 1605e03 + 9e46791 commit 3a11e06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ pub use crate::app::{
pub use crate::bank::{Bank, BankKeeper, BankSudo};
pub use crate::contracts::{Contract, ContractWrapper};
pub use crate::executor::{AppResponse, Executor};
pub use crate::gov::Gov;
pub use crate::ibc::{Ibc, IbcAcceptingModule};
pub use crate::module::{FailingModule, Module};
pub use crate::staking::{DistributionKeeper, StakeKeeper, Staking, StakingInfo, StakingSudo};
pub use crate::staking::{
Distribution, DistributionKeeper, StakeKeeper, Staking, StakingInfo, StakingSudo,
};
pub use crate::wasm::{AddressGenerator, Wasm, WasmKeeper, WasmSudo};

0 comments on commit 3a11e06

Please sign in to comment.