1
2
3
4
5
6
7
8
9
10
11
#[cfg(not(any(test, feature = "test-support")))]
pub mod prod;

#[cfg(not(any(test, feature = "test-support")))]
pub use prod::*;

#[cfg(any(test, feature = "test-support"))]
pub mod test;

#[cfg(any(test, feature = "test-support"))]
pub use test::*;