rt_local/
runtime.rs

1/// Platform-independent runtime.
2pub mod core {
3
4    pub use rt_local_core::runtime::core::*;
5    pub use rt_local_macros::{core_main as main, core_test as test};
6}
7
8/// Runtime with Windows message loop.
9#[cfg(all(windows, feature = "windows"))]
10pub mod windows;