summaryrefslogtreecommitdiff
path: root/rust/schist_backend/src/routes/category.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/schist_backend/src/routes/category.rs')
-rw-r--r--rust/schist_backend/src/routes/category.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/rust/schist_backend/src/routes/category.rs b/rust/schist_backend/src/routes/category.rs
index 1f07452..b2412ac 100644
--- a/rust/schist_backend/src/routes/category.rs
+++ b/rust/schist_backend/src/routes/category.rs
@@ -1,10 +1,8 @@
-use schist_core::{
- models::category::Category,
- queries::categories::get_all_categories as get_all_categories_query,
-};
use rocket::get;
use rocket::http::Status;
use rocket::serde::json::Json;
+use schist_models::category::Category;
+use schist_queries::categories::get_all_categories as get_all_categories_query;
use crate::databases::UserDataDb;