Skip to content

Commit f51075f

Browse files
committed
fix: cargo formatting
1 parent 4820392 commit f51075f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,9 @@ async fn main() {
259259
.at("/check_update.js")
260260
.get(|_| resource(include_str!("../static/check_update.js"), "text/javascript", false).boxed());
261261
app.at("/copy.js").get(|_| resource(include_str!("../static/copy.js"), "text/javascript", false).boxed());
262-
app.at("/static/keyboardcommands.js").get(|_| resource(include_str!("../static/keyboardcommands.js"), "text/javascript", false).boxed());
262+
app
263+
.at("/static/keyboardcommands.js")
264+
.get(|_| resource(include_str!("../static/keyboardcommands.js"), "text/javascript", false).boxed());
263265

264266
app.at("/commits.atom").get(|_| async move { proxy_commit_info().await }.boxed());
265267
app.at("/instances.json").get(|_| async move { proxy_instances().await }.boxed());

0 commit comments

Comments
 (0)