diff --git a/Cargo.toml b/Cargo.toml index 3bf8e7f..0cc6254 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,4 +32,4 @@ regex = "1.10.0" ctor = "0.2.6" axum-client-ip = "0.4.0" jsonwebtoken = "9" -tower = "0.4.13" +tower = "0.4.13" \ No newline at end of file diff --git a/src/endpoints/admin/quest_boost/get_quest_users.rs b/src/endpoints/admin/quest/get_quest_users.rs similarity index 100% rename from src/endpoints/admin/quest_boost/get_quest_users.rs rename to src/endpoints/admin/quest/get_quest_users.rs diff --git a/src/endpoints/admin/quest/mod.rs b/src/endpoints/admin/quest/mod.rs index 514940a..5342953 100644 --- a/src/endpoints/admin/quest/mod.rs +++ b/src/endpoints/admin/quest/mod.rs @@ -1,6 +1,7 @@ pub mod create_quest; mod get_quest; pub mod get_quest_participants; +pub mod get_quest_users; pub mod get_quests; pub mod get_tasks; pub mod update_quest; diff --git a/src/endpoints/admin/quest_boost/mod.rs b/src/endpoints/admin/quest_boost/mod.rs index 8daed52..21fdeda 100644 --- a/src/endpoints/admin/quest_boost/mod.rs +++ b/src/endpoints/admin/quest_boost/mod.rs @@ -1,4 +1,3 @@ pub mod create_boost; pub mod get_boost_winners; -pub mod get_quest_users; -pub mod update_boost; \ No newline at end of file +pub mod update_boost;