feat: user registration

Adds crates and code for user registration, this is EXTREMELY INSECURE AND FOR TESTING ONLY
This commit is contained in:
Radical 2025-04-29 21:54:41 +02:00
parent 26b6601f5b
commit 19bad249d4
3 changed files with 144 additions and 3 deletions

View file

@ -1,7 +1,10 @@
use actix_web::{Scope, web};
mod stats;
mod register;
pub fn web() -> Scope {
web::scope("/v1").service(stats::res)
web::scope("/v1")
.service(stats::res)
.service(register::res)
}