roa 0.6.1

async web framework inspired by koajs, lightweight but powerful.
//! This module provides an acceptor implementing `roa_core::Accept` and an app extension.
//!
//! ### TcpIncoming
//!
//! ```
//! use roa::{App, Context, Result};
//! use roa::tcp::TcpIncoming;
//! use std::io;
//!
//! async fn end(_ctx: &mut Context) -> Result {
//!     Ok(())
//! }
//! # #[tokio::main]
//! # async fn main() -> io::Result<()> {
//! let app = App::new().end(end);
//! let incoming = TcpIncoming::bind("127.0.0.1:0")?;
//! let server = app.accept(incoming);
//! // server.await
//! Ok(())
//! # }
//! ```
//!
//! ### Listener
//!
//! ```
//! use roa::{App, Context, Result};
//! use roa::tcp::Listener;
//! use std::io;
//!
//! async fn end(_ctx: &mut Context) -> Result {
//!     Ok(())
//! }
//! # #[tokio::main]
//! # async fn main() -> io::Result<()> {
//! let app = App::new().end(end);
//! let (addr, server) = app.bind("127.0.0.1:0")?;
//! // server.await
//! Ok(())
//! # }
//! ```

mod incoming;
mod listener;

#[doc(inline)]
pub use incoming::TcpIncoming;
#[doc(inline)]
pub use listener::Listener;