iced-yoda/src/lib.rs

10 lines
240 B
Rust
Raw Normal View History

mod application;
#[cfg_attr(target_arch = "wasm32", path = "web.rs")]
#[cfg_attr(not(target_arch = "wasm32"), path = "native.rs")]
mod platform;
mod sandbox;
2019-10-03 00:01:45 +02:00
pub use application::Application;
pub use platform::*;
pub use sandbox::Sandbox;