ics12_proto/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3mod client;
4
5pub mod v1 {
6    pub use super::client::*;
7}