summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index aaa9756..f39c843 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -114,7 +114,9 @@ async fn get_try_inject_head_nav_footer(
.await
.into_response();
- inject(res, "footer.html", "</main>", state.clone()).await.into_response()
+ inject(res, "footer.html", "</main>", state.clone())
+ .await
+ .into_response()
}
#[tokio::main]