aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
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<()> {