11 lines
251 B
Rust
11 lines
251 B
Rust
#[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::*;
|