Module wiring: declares the contract’s modules and re-exports.
Live source from contracts/launchpad/src/lib.rs (11 lines). Generated from the deployed contract code.
pub mod contract;
pub mod error;
pub mod msg;
pub mod state;

// Re-export message types for external use
pub use msg::{ExecuteMsg, InstantiateMsg, QueryMsg};

// Re-export entry points from contract module
pub use contract::{execute, instantiate, query, reply};