Windmark is An elegant and highly performant async Gemini server framework.
```toml
[dependencies] windmark = "0.1.0"
```
```rust use windmark::response::Response;
fn main() -> std::io::Result<()> { windmark::Router::new() .mount("/", |, _, _| Response::Success("Hello, World!".into())) .seterrorhandler(|, _, _| { Response::PermanentFailure("This route does not exist!".into()) }) .run() } ```
Examples can be found within the examples/
directory.
This project is licensed with the GNU General Public License v3.0.