Rocket/examples/static_files/src/main.rs

23 lines
449 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;
use rocket::response::NamedFile;
2016-09-08 07:02:17 +00:00
use std::path::{Path, PathBuf};
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-09-12 08:51:02 +00:00
fn files(file: PathBuf) -> io::Result<NamedFile> {
NamedFile::open(Path::new("static/").join(file))
}
fn main() {
rocket::ignite().mount("/", routes![index, files]).launch();
}