rowt/src/main.rs

12 lines
131 B
Rust
Raw Normal View History

2023-03-26 14:40:56 +02:00
use rot::rest;
2023-02-08 16:25:06 +01:00
#[macro_use]
extern crate rocket;
#[launch]
async fn rocket() -> _ {
2023-03-04 11:20:12 +01:00
env_logger::init();
2023-03-26 14:40:56 +02:00
rest::start()
2023-02-08 16:25:06 +01:00
}