cw_boolean_contract/entry_points/mod.rs
1//! CosmWasm smart contracts contain entry points.
2//! More on this pattern here: [https://book.cosmwasm.com/basics/entry-points.html](https://book.cosmwasm.com/basics/entry-points.html)
3
4/// The execute entry point
5pub mod execute;
6/// The instantiate entry point
7pub mod instantiate;
8/// The query entry point
9pub mod query;