🏗️ Elegant & Highly Performant Async Gemini Server Framework for the Modern Age
async framework gemini-protocol protocol gemini rust
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(lib.rs): response content no leading whitespace

Fuwn 889cd693 0c7e8118

+1 -1
+1 -1
src/lib.rs
··· 497 497 }, 498 498 match response_status { 499 499 20 => format!("{}{}\n{}", header, content, footer), 500 - 21 => format!(" {}", content), 500 + 21 => content.to_string(), 501 501 _ => "".to_string(), 502 502 } 503 503 )