winit/src/platform_impl/web/async/mod.rs
2023-12-22 22:20:41 +01:00

9 lines
244 B
Rust

mod channel;
mod dispatcher;
mod waker;
mod wrapper;
pub use self::channel::{channel, AsyncReceiver, AsyncSender};
pub use self::dispatcher::{DispatchRunner, Dispatcher};
pub use self::waker::{Waker, WakerSpawner};
use self::wrapper::Wrapper;