Run rustfmt on everything

This commit is contained in:
AppleTheGolden
2020-05-27 20:51:28 +02:00
parent c49f0ede16
commit 91274267e5
11 changed files with 54 additions and 34 deletions

View File

@@ -1,4 +1,4 @@
use actix_web::{web, HttpResponse, get};
use actix_web::{get, web, HttpResponse};
use handlebars::*;
#[get("modeditor")]
@@ -9,4 +9,4 @@ pub async fn mod_editor_get(hb: web::Data<Handlebars<'_>>) -> HttpResponse {
let body = hb.render("mod_editor", &data).unwrap();
HttpResponse::Ok().body(body)
}
}