aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-05-22 06:35:38 +0000
committerFuwn <[email protected]>2023-05-22 06:35:38 +0000
commit5eba8e405bb6e51fcdbf430f67190f4414612451 (patch)
tree92f01a336e806f2b204616e6ac8ed52c3df61f38 /src/main.rs
parentdeps(gmi): finally drop gmi (diff)
downloadseptember-5eba8e405bb6e51fcdbf430f67190f4414612451.tar.xz
september-5eba8e405bb6e51fcdbf430f67190f4414612451.zip
fmt: update rustfmt config
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/main.rs b/src/main.rs
index a1ffb08..c56c9e0 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -31,13 +31,9 @@ mod html;
mod response;
mod url;
-#[macro_use]
-extern crate log;
+#[macro_use] extern crate log;
-use std::env::var;
-
-use actix_web::web;
-use response::default;
+use {actix_web::web, response::default, std::env::var};
#[actix_web::main]
async fn main() -> std::io::Result<()> {