diff options
| author | Fuwn <[email protected]> | 2024-07-24 00:38:05 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-24 00:38:05 +0000 |
| commit | caeddebbb83e0ea0f495d1ce598f7daa288591e4 (patch) | |
| tree | 7c1cd50dc598f17f0a6b006c6ff8f858cf18b39c /src/main.rs | |
| parent | chore: remove semi-outdated technical information (diff) | |
| download | september-caeddebbb83e0ea0f495d1ce598f7daa288591e4.tar.xz september-caeddebbb83e0ea0f495d1ce598f7daa288591e4.zip | |
refactor(response): move configuration into struct
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 9fe7910..a7374c3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -14,8 +14,7 @@ mod html; mod response; mod url; -#[macro_use] -extern crate log; +#[macro_use] extern crate log; use {actix_web::web, response::default, std::env::var}; |