Rocket/examples/static_files/src/main.rs

25 lines
537 B
Rust
Raw Normal View History

#![feature(plugin)]
2016-09-09 03:38:58 +00:00
#![plugin(rocket_codegen)]
extern crate rocket;
2016-09-08 07:02:17 +00:00
2016-09-12 08:51:02 +00:00
use std::io;
2016-09-08 07:02:17 +00:00
use std::path::{Path, PathBuf};
2016-11-02 16:47:00 +00:00
use rocket::response::{NamedFile, Failure};
use rocket::http::StatusCode::NotFound;
2016-09-04 11:06:28 +00:00
#[get("/")]
2016-09-12 08:51:02 +00:00
fn index() -> io::Result<NamedFile> {
NamedFile::open("static/index.html")
}
2016-09-08 07:02:17 +00:00
#[get("/<file..>")]
2016-11-02 16:47:00 +00:00
fn files(file: PathBuf) -> Result<NamedFile, Failure> {
NamedFile::open(Path::new("static/").join(file)).map_err(|_| Failure(NotFound))
}
fn main() {
rocket::ignite().mount("/", routes![index, files]).launch();
}