feat: user registration
Adds crates and code for user registration, this is EXTREMELY INSECURE AND FOR TESTING ONLY
This commit is contained in:
parent
26b6601f5b
commit
19bad249d4
3 changed files with 144 additions and 3 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue