summaryrefslogtreecommitdiffstats
path: root/src/models/user.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/models/user.rs
parent89c0c4f609bd3232a4374fd0b8fbba233d5273fd (diff)
Merge all crates import as `use crate::<module name>`
Diffstat (limited to 'src/models/user.rs')
-rw-r--r--src/models/user.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/models/user.rs b/src/models/user.rs
index f905968..964a57c 100644
--- a/src/models/user.rs
+++ b/src/models/user.rs
@@ -1,6 +1,4 @@
-use crate::config::CONFIG;
-use crate::db::get_client;
-use crate::errors::AppError;
+use crate::{config::CONFIG, db::get_client, errors::AppError};
use serde::{Deserialize, Serialize};
use serde_with::{serde_as, NoneAsEmptyString};