mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-12 09:38:08 +00:00
14 lines
407 B
Rust
14 lines
407 B
Rust
//! Reexporting the `constant` module according to the
|
|
//! current feature (Trezor model)
|
|
|
|
#[cfg(all(
|
|
feature = "model_mercury",
|
|
not(feature = "model_tr"),
|
|
not(feature = "model_tt")
|
|
))]
|
|
pub use super::model_mercury::constant::*;
|
|
#[cfg(all(feature = "model_tr", not(feature = "model_tt")))]
|
|
pub use super::model_tr::constant::*;
|
|
#[cfg(feature = "model_tt")]
|
|
pub use super::model_tt::constant::*;
|