winit/src/platform_impl/web/async/mod.rs

10 lines
240 B
Rust
Raw Normal View History

2023-10-16 15:50:22 +02:00
mod channel;
mod dispatcher;
mod waker;
mod wrapper;
use self::channel::{channel, AsyncReceiver, AsyncSender};
pub use self::dispatcher::{DispatchRunner, Dispatcher};
pub use self::waker::{Waker, WakerSpawner};
use self::wrapper::Wrapper;