mirror of
https://github.com/rwf2/Rocket.git
synced 2025-03-01 12:02:10 +00:00
15 lines
241 B
Rust
15 lines
241 B
Rust
#![feature(proc_macro_hygiene, decl_macro)]
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
#[cfg(test)] mod tests;
|
|
|
|
#[get("/")]
|
|
fn hello() -> &'static str {
|
|
"Hello, world!"
|
|
}
|
|
|
|
fn main() {
|
|
rocket::ignite().mount("/", routes![hello]).launch();
|
|
}
|