diff options
| author | Fuwn <[email protected]> | 2023-05-22 06:35:38 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-22 06:35:38 +0000 |
| commit | 2fef38c965120dbd2238cd5584c0e89c5c8be83a (patch) | |
| tree | 76d54a809c15596d7c7af77ade4bde64853ff7b3 /src/main.rs | |
| parent | deps(gmi): finally drop gmi (diff) | |
| download | september-2fef38c965120dbd2238cd5584c0e89c5c8be83a.tar.xz september-2fef38c965120dbd2238cd5584c0e89c5c8be83a.zip | |
fmt: update rustfmt config
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 8 |
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<()> { |