bitbadges_cosmwasm/lib.rs
1mod msg;
2mod querier;
3mod query;
4//export all from msg
5pub use msg::*;
6pub use querier::BitBadgesQuerier;
7pub use query::*;
8
9// This export is added to all contracts that import this package, signifying that they require
10// "bitbadges" support on the chain they run on.
11#[no_mangle]
12extern "C" fn requires_bitbadges() {}