28 lines
776 B
Rust
28 lines
776 B
Rust
|
|
mod user_handlers;
|
|
mod gamenight_handlers;
|
|
mod error;
|
|
mod authorization;
|
|
mod join_gamenight;
|
|
mod participant_handlers;
|
|
mod game;
|
|
|
|
pub use user_handlers::login;
|
|
pub use user_handlers::refresh;
|
|
pub use user_handlers::register;
|
|
pub use gamenight_handlers::gamenights;
|
|
pub use gamenight_handlers::gamenight_post;
|
|
pub use gamenight_handlers::gamenight_get;
|
|
pub use user_handlers::get_user;
|
|
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::get_game;
|
|
pub use game::post_game;
|
|
pub use game::post_rename_game;
|
|
pub use game::post_own_game;
|
|
pub use game::post_disown_game;
|
|
pub use game::get_owned_games;
|