summaryrefslogtreecommitdiff
path: root/rust/schist_backend/src/routes/account.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-11-17 12:16:19 +0000
committerJoe Carstairs <me@joeac.net>2024-11-17 12:20:48 +0000
commit99fa72e2b9d572e00cd232bd55a3fa24722c3134 (patch)
tree6b50ce600fffa07a0c21b7f14d2447fe5ac3c2ed /rust/schist_backend/src/routes/account.rs
parent10f071447594f2bdcec84a461df9ad648f71f44b (diff)
Refactors workspace
Diffstat (limited to 'rust/schist_backend/src/routes/account.rs')
-rw-r--r--rust/schist_backend/src/routes/account.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/rust/schist_backend/src/routes/account.rs b/rust/schist_backend/src/routes/account.rs
index 22565fb..83d4d1b 100644
--- a/rust/schist_backend/src/routes/account.rs
+++ b/rust/schist_backend/src/routes/account.rs
@@ -1,7 +1,5 @@
-use schist_core::{
- models::account::Account,
- queries::accounts::{get_all_accounts as get_all_accounts_query, insert_accounts},
-};
+use schist_models::account::Account;
+use schist_queries::accounts::{get_all_accounts as get_all_accounts_query, insert_accounts};
use rocket::http::Status;
use rocket::serde::json::Json;
use rocket::{get, post, Responder};