🏗️ Elegant & Highly Performant Async Gemini Server Framework for the Modern Age
async framework gemini-protocol protocol gemini rust
at main 10 lines 268 B view raw
1//! `cargo run --example empty` 2 3#[windmark::main] 4async fn main() -> Result<(), Box<dyn std::error::Error>> { 5 windmark::router::Router::new() 6 .set_private_key_file("windmark_private.pem") 7 .set_certificate_file("windmark_public.pem") 8 .run() 9 .await 10}