1
0
mirror of https://github.com/actix/actix-website synced 2025-02-13 00:25:35 +01:00

9 lines
170 B
Rust
Raw Normal View History

2019-06-17 17:35:47 -04:00
// <directory>
use actix_files as fs;
use actix_web::App;
pub fn main() {
2019-06-17 17:35:47 -04:00
App::new().service(fs::Files::new("/static", ".").show_files_listing());
}
// </directory>