use chapter03_0::run; use std::net::TcpListener; #[actix_rt::main] async fn main() -> std::io::Result<()> { let address = TcpListener::bind("127.0.0.1:8000")?; run(address)?.await }