This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
hilde/src/main.rs

11 lines
132 B
Rust
Raw Normal View History

2021-06-27 11:36:54 +02:00
#[macro_use]
extern crate rocket;
#[macro_use]
extern crate diesel_migrations;
#[launch]
fn rocket() -> _ {
rocket::build()
2021-06-16 12:53:32 +02:00
}