waki 0.1.0

An HTTP library for building Web apps with WASI API
Documentation

waki

An HTTP library for building Web apps with WASI API.

use waki::{handler, Request, Response};

#[handler]
fn hello(req: Request) -> Response {
    Response::new().body(b"Hello, WASI!")
}