ngx/async_/
mod.rs

1//! Async runtime and set of utilities on top of the NGINX event loop.
2pub use self::sleep::{sleep, Sleep};
3pub use self::spawn::{spawn, Task};
4
5mod sleep;
6mod spawn;