refget_client/lib.rs
1//! HTTP client for GA4GH refget Sequences v2.0.0 and Sequence Collections v1.0.0 APIs.
2
3mod async_client;
4#[cfg(feature = "blocking")]
5mod blocking;
6mod error;
7mod response;
8#[cfg(feature = "store")]
9mod store;
10
11pub use async_client::RefgetClient;
12#[cfg(feature = "blocking")]
13pub use blocking::RefgetClientBlocking;
14pub use error::{ClientError, ClientResult};
15#[cfg(feature = "store")]
16pub use store::RemoteSequenceStore;