blob: 8462cd3c780ca3da2e6fc0dfe21474b1958cc829 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
mod application;
#[cfg_attr(target_arch = "wasm32", path = "web.rs")]
#[cfg_attr(not(target_arch = "wasm32"), path = "native.rs")]
mod platform;
mod sandbox;
pub use application::Application;
pub use platform::*;
pub use sandbox::Sandbox;
|