#[macro_use]
extern crate rocket;
mod models;
mod rest;
#[launch]
async fn rocket() -> _ {
rest::start().await
}