htsget_test/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "http")]
pub use htsget_config::{
  config::{Config, DataServerConfig, ServiceInfo, TicketServerConfig},
  storage::Storage,
};

#[cfg(feature = "aws-mocks")]
pub mod aws_mocks;
#[cfg(feature = "experimental")]
pub mod c4gh;
pub mod error;
#[cfg(feature = "http")]
pub mod http;
pub mod util;