user search (i think)

This commit is contained in:
Reid 2023-08-29 02:54:30 -07:00
parent 80c884f489
commit 82aae16766
Signed by: reidlab
GPG key ID: 6C9EAA3364F962C8
7 changed files with 81 additions and 5 deletions

View file

@ -1,6 +1,7 @@
#![feature(decl_macro)]
#![feature(lazy_cell)]
#[macro_use] extern crate maplit;
#[macro_use] extern crate rocket;
mod db;
@ -29,6 +30,8 @@ fn rocket() -> _ {
])
.mount(CONFIG.general.append_path.as_str(), routes![
endpoints::accounts::login_account::login_account,
endpoints::accounts::register_account::register_account
endpoints::accounts::register_account::register_account,
endpoints::users::get_users::get_users
])
}