rowt/src/main.rs

11 lines
119 B
Rust
Raw Normal View History

2023-02-08 16:25:06 +01:00
#[macro_use]
extern crate rocket;
mod models;
2023-02-09 15:29:44 +01:00
mod rest;
2023-02-09 12:16:04 +01:00
2023-02-08 16:25:06 +01:00
#[launch]
async fn rocket() -> _ {
2023-02-09 15:29:44 +01:00
rest::start().await
2023-02-08 16:25:06 +01:00
}