summaryrefslogtreecommitdiffstats
path: root/src/files.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2022-09-20 12:39:47 +0000
committerSanto Cariotti <santo@dcariotti.me>2022-09-20 12:39:47 +0000
commitb65ad29774d2a58372058d1aeafca5a423efb8d4 (patch)
tree211831f205cd2e156552d986247c9898c54f9502 /src/files.rs
parent89c0c4f609bd3232a4374fd0b8fbba233d5273fd (diff)
Merge all crates import as `use crate::<module name>`
Diffstat (limited to 'src/files.rs')
-rw-r--r--src/files.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/files.rs b/src/files.rs
index f72070b..b0f0ad5 100644
--- a/src/files.rs
+++ b/src/files.rs
@@ -1,5 +1,4 @@
-use crate::config::CONFIG;
-use crate::errors::AppError;
+use crate::{config::CONFIG, errors::AppError};
use axum::{
extract::{Multipart, Path},
http::header::{HeaderMap, HeaderName, HeaderValue},