File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,9 @@ async fn main() {
259
259
. at ( "/check_update.js" )
260
260
. get ( |_| resource ( include_str ! ( "../static/check_update.js" ) , "text/javascript" , false ) . boxed ( ) ) ;
261
261
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 ( ) ) ;
263
265
264
266
app. at ( "/commits.atom" ) . get ( |_| async move { proxy_commit_info ( ) . await } . boxed ( ) ) ;
265
267
app. at ( "/instances.json" ) . get ( |_| async move { proxy_instances ( ) . await } . boxed ( ) ) ;
You can’t perform that action at this time.
0 commit comments