Adds Adding of Games to the system.

This commit is contained in:
2025-06-27 22:08:23 +02:00
parent 3f51d52edf
commit 28f7306d57
40 changed files with 792 additions and 130 deletions

View File

@@ -5,6 +5,7 @@ mod error;
mod authorization;
mod join_gamenight;
mod participant_handlers;
mod game;
pub use user_handlers::login;
pub use user_handlers::refresh;
@@ -17,3 +18,5 @@ pub use user_handlers::get_user_unauthenticated;
pub use join_gamenight::post_join_gamenight;
pub use join_gamenight::post_leave_gamenight;
pub use participant_handlers::get_get_participants;
pub use game::get_games;
pub use game::post_game;