htsget_test/lib.rs
1#[cfg(feature = "http")]
2pub use htsget_config::{
3 config::{Config, DataServerConfig, ServiceInfo, TicketServerConfig},
4 storage::Storage,
5};
6
7#[cfg(feature = "aws-mocks")]
8pub mod aws_mocks;
9#[cfg(feature = "experimental")]
10pub mod c4gh;
11pub mod error;
12#[cfg(feature = "http")]
13pub mod http;
14pub mod util;