rocket-pinboard/src/main.rs

18 lines
262 B
Rust
Raw Normal View History

2017-12-06 15:29:10 +01:00
#![feature(plugin)]
#![plugin(rocket_codegen)]
extern crate rocket;
mod static_files;
2017-12-06 15:29:10 +01:00
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}
fn main() {
rocket::ignite()
.mount("/", routes![index, static_files::all])
2017-12-06 15:29:10 +01:00
.launch();
}