dao_pre_propose_approver/
lib.rs

1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
2
3pub mod contract;
4pub mod msg;
5pub mod state;
6
7#[cfg(test)]
8mod tests;
9
10// Exporting these means that contracts interacting with this one don't
11// need an explicit dependency on the base contract to read queries.
12pub use dao_pre_propose_base::msg::DepositInfoResponse;
13pub use dao_pre_propose_base::state::Config;