diff --git a/gui/src/imp/mod.rs b/gui/src/imp/mod.rs index 59b2095..deb0c60 100644 --- a/gui/src/imp/mod.rs +++ b/gui/src/imp/mod.rs @@ -1,11 +1,11 @@ #[cfg(feature = "web")] mod web; -#[cfg(any(feature = "desktop", feature = "android"))] +#[cfg(any(feature = "desktop", feature = "mobile"))] mod desktop; -#[cfg(all(feature = "web", not(any(feature = "desktop", feature = "android"))))] +#[cfg(all(feature = "web", not(any(feature = "desktop", feature = "mobile"))))] pub use web::*; -#[cfg(any(feature = "desktop", feature = "android"))] +#[cfg(any(feature = "desktop", feature = "mobile"))] pub use desktop::*;