1
2
3
4
5
6
7
8
9
10
11
12
//! Constants that define the current build and execution environment.

#[cfg(feature = "readonly")]
pub mod mock;
#[cfg(feature = "readonly")]
pub use self::mock::*;

#[rustfmt::skip]
#[cfg(not(feature = "readonly"))]
pub mod generated;
#[cfg(not(feature = "readonly"))]
pub use self::generated::*;