mirror of https://github.com/rwf2/Rocket.git
15 lines
347 B
Rust
15 lines
347 B
Rust
use std::fs::File;
|
|
use std::io;
|
|
|
|
#[route(GET, path = "/<top>/<file>")]
|
|
fn all_level_one(top: &str, file: &str) -> io::Result<File> {
|
|
let file = format!("static/{}/{}", top, file);
|
|
File::open(file)
|
|
}
|
|
|
|
#[route(GET, path = "/<file>")]
|
|
fn all(file: &str) -> io::Result<File> {
|
|
let file = format!("static/{}", file);
|
|
File::open(file)
|
|
}
|