Rewrite to chatty but functional API.

This commit is contained in:
2025-06-14 22:16:13 +02:00
parent d1832bc794
commit db6f55bc47
20 changed files with 423 additions and 175 deletions

View File

@@ -44,6 +44,8 @@ async fn main() -> std::io::Result<()> {
.service(gamenight_get)
.service(get_user)
.service(get_user_unauthenticated)
.service(post_join_gamenight)
.service(get_get_participants)
})
.bind(("::1", 8080))?
.run()