add user table

This commit is contained in:
2023-03-26 14:40:56 +02:00
parent f01b073654
commit bb8fb03b61
9 changed files with 1477 additions and 9 deletions

View File

@ -1,7 +1,11 @@
use rot::rest;
#[macro_use]
extern crate rocket;
#[launch]
async fn rocket() -> _ {
env_logger::init();
rest::start()
}