presentation-rust-webapps/simple_text_board/src/main.rs

13 lines
209 B
Rust
Raw Normal View History

2021-01-11 23:10:26 +01:00
#![feature(proc_macro_hygiene, decl_macro)]
use rocket::{get, routes};
#[get("/")]
fn index() -> &'static str {
"Hello, world!"
}
fn main() {
2021-01-11 23:10:26 +01:00
rocket::ignite().mount("/", routes![index]).launch();
}