#[cfg(not(target_family = "wasm"))]
mod instant_desktop;
#[cfg(target_family = "wasm")]
mod instant_web; #[cfg(not(target_arch = "wasm32"))] pub use instant_desktop::Spot; #[cfg(target_arch = "wasm32")] pub use instant_web::Spot;