Rocket/examples/static_files/src/main.rs

24 lines
471 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;
2016-09-08 07:02:17 +00:00
use std::fs::File;
use std::io::Error as IOError;
2016-09-08 07:02:17 +00:00
use std::path::{Path, PathBuf};
2016-09-04 11:06:28 +00:00
#[get("/")]
fn index() -> File {
File::open("static/index.html").unwrap()
}
2016-09-08 07:02:17 +00:00
#[get("/<file..>")]
fn files(file: PathBuf) -> Result<File, IOError> {
File::open(Path::new("static/").join(file))
}
fn main() {
Rocket::new("localhost", 8000).mount_and_launch("/", routes![index, files]);
}