xmtp_configuration/
lib.rs1mod common;
2pub use common::*;
3
4#[cfg(any(test, feature = "test-utils"))]
5mod test;
6
7#[cfg(any(test, feature = "test-utils"))]
8pub use test::*;
9
10#[cfg(not(any(test, feature = "test-utils")))]
11mod prod;
12
13#[cfg(not(any(test, feature = "test-utils")))]
14pub use prod::*;