******************************************************************************** Getting Started ******************************************************************************** The following example demonstrates how to create a simple ``http_server`` and attach handlers to it. `Getting Started Example `_ .. code-block:: cpp #include using namespace fitoria; using namespace fitoria::web; auto hello_world() -> awaitable { co_return response::ok() .set_header(http::field::content_type, mime::text_plain()) .set_body("Hello World!"); } auto echo(std::string body) -> awaitable { co_return response::ok() .set_header(http::field::content_type, mime::text_plain()) .set_body(body); } int main() { auto ioc = net::io_context(); auto server = http_server::builder(ioc) .serve(route::get<"/">(hello_world)) .serve(route::post<"/echo">(echo)) .build(); server.bind("127.0.0.1", 8080); ioc.run(); }