diff options
| author | Fuwn <[email protected]> | 2023-04-17 23:17:50 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-17 23:17:50 -0700 |
| commit | 55167fafb1cd292fe3c42e5c4066a474d05be1f3 (patch) | |
| tree | 50a28cf249b0e59949899c53e54b3b3cdf4ca452 /src/modules/contact.rs | |
| parent | chore(amenadiel): remove unused feature flag (diff) | |
| download | locus-55167fafb1cd292fe3c42e5c4066a474d05be1f3.tar.xz locus-55167fafb1cd292fe3c42e5c4066a474d05be1f3.zip | |
style: rewrite formatter
Diffstat (limited to 'src/modules/contact.rs')
| -rw-r--r-- | src/modules/contact.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/modules/contact.rs b/src/modules/contact.rs index 76781b9..aaeba96 100644 --- a/src/modules/contact.rs +++ b/src/modules/contact.rs @@ -51,7 +51,10 @@ pub fn module(router: &mut windmark::Router) { "/contact", "A Few Skills of Fuwn", move |context| { - crate::response::success(&format!("# Contact\n\n{}", contacts.join("\n")), &context) + crate::response::success( + &format!("# Contact\n\n{}", contacts.join("\n")), + &context, + ) }, ); } |