You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/rust/src/ui/constant.rs

14 lines
397 B

//! Reexporting the `constant` module according to the
//! current feature (Trezor model)
#[cfg(feature = "model_t1")]
pub use super::model_t1::constant::*;
#[cfg(all(feature = "model_tr", not(feature = "model_t1")))]
pub use super::model_tr::constant::*;
#[cfg(all(
feature = "model_tt",
not(feature = "model_tr"),
not(feature = "model_t1")
))]
pub use super::model_tt::constant::*;