aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/server.rs
blob: 82acbe218b8925a7829a3ca360063cb25c17368d (plain) (blame)
1
2
3
4
5
6
7
8
#[get("/")]
fn index() -> &'static str {
    "Hello, world!"
}

pub fn launch() {
    rocket::ignite().mount("/", routes![index]).launch();
}