10 lines
202 B
Rust
10 lines
202 B
Rust
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::*;
|