ohkami - [狼] means wolf in Japanese - is simple and non macro-based web framework for Rust.
```toml [dependencies] ohkami = { git = "https://github.com/kana-rus/ohkami", version = "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 producntions use.
This project is under MIT LICENSE (LICENSE-MIT or https://opensource.org/licenses/MIT).