katbin/src/main.rs

16 lines
228 B
Rust
Raw Normal View History

#![feature(proc_macro_hygiene, decl_macro)]
#[macro_use]
extern crate rocket;
#[get("/alive")]
fn alive() -> &'static str {
"OK"
}
fn main() {
rocket::ignite()
.mount("/", routes![index])
.launch();
}