summaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
authormrw1593 <botahamec@outlook.com>2023-05-29 10:51:10 -0400
committermrw1593 <botahamec@outlook.com>2023-05-29 10:51:10 -0400
commite048d7d050f87e9e5bf06f01e39fd417d6868c7e (patch)
tree8312a39234b7f78699914cba06ce2328b047625d /src/api
parente38854c7db0fe6f006304d7f638b6aa190fc2d87 (diff)
Create a Client struct
Diffstat (limited to 'src/api')
-rw-r--r--src/api/users.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/users.rs b/src/api/users.rs
index 353f8ff..2b67663 100644
--- a/src/api/users.rs
+++ b/src/api/users.rs
@@ -6,7 +6,7 @@ use sqlx::MySqlPool;
use thiserror::Error;
use uuid::Uuid;
-use crate::models::User;
+use crate::models::user::User;
use crate::services::crypto::PasswordHash;
use crate::services::{db, id};