Adds user authorization to the actix backend.

This commit is contained in:
2023-03-25 19:20:38 +01:00
parent 1c8110cdb0
commit 534e6867d8
11 changed files with 142 additions and 44 deletions

View File

@@ -1,8 +1,11 @@
mod requests;
mod responses;
mod handler;
mod user_handlers;
mod gamenight_handlers;
mod error;
mod authorization;
pub use handler::login;
pub use handler::register;
pub use user_handlers::login;
pub use user_handlers::register;
pub use gamenight_handlers::gamenights;