ohkami - [狼] means wolf in Japanese - is simple and non macro-based web framework for Rust.
toml
[dependencies]
ohkami = "0.1"
```rust use ohkami::prelude::*;
fn main() -> Result<()> { Server::setup() .GET("/", || async {Response::OK(Body::text("Hello, world!"))}) .serveon(":3000") } ```
ohkami is on very early stage now, so not for any producntion use.
This project is under MIT LICENSE (LICENSE-MIT or https://opensource.org/licenses/MIT).