1//! The CosmWasm contract implementation of the ICS-07 Tendermint light client 2//! built using `ibc-rs`. 3#![cfg_attr(not(test), deny(clippy::unwrap_used))] 4 5pub mod client_type; 6pub mod entrypoint; 7 8#[cfg(test)] 9mod tests;