mirror of https://github.com/rwf2/Rocket.git
22 lines
377 B
Rust
22 lines
377 B
Rust
#![feature(proc_macro_hygiene, decl_macro)]
|
|
|
|
#[macro_use] extern crate rocket;
|
|
|
|
#[cfg(test)] mod tests;
|
|
|
|
use rocket::response::Redirect;
|
|
|
|
#[get("/")]
|
|
fn root() -> Redirect {
|
|
Redirect::to(uri!(login))
|
|
}
|
|
|
|
#[get("/login")]
|
|
fn login() -> &'static str {
|
|
"Hi! Please log in before continuing."
|
|
}
|
|
|
|
fn main() {
|
|
rocket::ignite().mount("/", routes![root, login]).launch();
|
|
}
|