s/android/mobile

This commit is contained in:
2026-01-04 19:50:07 -07:00
parent 6d5bf80d72
commit f8ed2a2508
+3 -3
View File
@@ -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::*;