//! Minimal Arcature HTTP application.
//!
//! Demonstrates the intended user experience: construct an [`App`], register a
//! route, bind a listener, and serve. Run with:
//!
//! ```sh
//! cargo run --example hello
//! ```
//!
//! Then visit `http://127.0.0.1:3000/` in a browser or with curl.
use App;
use get;
use TcpListener;
async
async