renamed: api/src/controller/player_info.rs -> api/src/controller/account.rs

This commit is contained in:
liyunjia 2024-05-25 09:19:20 +08:00
parent 4917b8bcf2
commit 486e488fd0
3 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
pub mod player_info;
pub mod account;
pub mod feedback;

View File

@ -9,7 +9,7 @@ pub(crate) fn init() -> Router {
let open = Router::new().route("/", get(|| async { "hello" }));
let auth = Router::new()
.route("/game_accounts", post(controller::player_info::create))
.route("/game_accounts", post(controller::account::create))
.route("/feedback", post(controller::feedback::add_feedback).get(controller::feedback::get_feedback_list_by_page));
Router::new()