Skip to main content

neis_client/
lib.rs

1#[cfg(feature = "client")]
2mod client;
3#[cfg(feature = "client")]
4mod error;
5pub mod types;
6
7#[cfg(feature = "client")]
8pub use client::NeisClient;
9#[cfg(feature = "client")]
10pub use error::Error;