🏗️ 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.

refactor(router): no need for pin

Fuwn 2f7e1b76 44d6b539

+1 -3
+1 -3
src/router.rs
··· 165 165 .insert( 166 166 route.into(), 167 167 Arc::new(AsyncMutex::new(Box::new( 168 - move |context: RouteContext<'_>| { 169 - Box::pin(handler(context).into_future()) 170 - }, 168 + move |context: RouteContext<'_>| handler(context).into_future(), 171 169 ))), 172 170 ) 173 171 .unwrap();