Rocket/examples/redirect/src/main.rs

21 lines
374 B
Rust
Raw Normal View History

#![feature(plugin)]
2016-09-09 03:38:58 +00:00
#![plugin(rocket_codegen)]
extern crate rocket;
use rocket::Rocket;
use rocket::response::Redirect;
2016-09-04 11:06:28 +00:00
#[get("/")]
fn root() -> Redirect {
Redirect::to("/login")
}
2016-09-04 11:06:28 +00:00
#[get("/login")]
fn login() -> &'static str {
"Hi! Please log in before continuing."
}
fn main() {
Rocket::new("localhost", 8000).mount_and_launch("/", routes![root, login]);
}