login endpoint is real!!

This commit is contained in:
Reid 2023-08-27 21:39:54 -07:00
parent f3908219cd
commit 77ad597963
Signed by: reidlab
GPG key ID: 6C9EAA3364F962C8
6 changed files with 81 additions and 8 deletions

View file

@ -21,6 +21,7 @@ fn rocket() -> _ {
rocket::build().mount("/", routes![
index,
endpoints::accounts::login_account::login_account,
endpoints::accounts::register_account::register_account
])
}