server: prefer immutable path

This commit is contained in:
Waldemar Heinze 2022-11-24 23:27:21 +01:00
parent dd7e392626
commit 99c7e59568

View File

@ -25,9 +25,7 @@ use std::sync::RwLock;
use tracing::info;
async fn index() -> actix_web::Result<NamedFile> {
let mut path = PathBuf::new();
path.push("app");
path.push("index.html");
let path = PathBuf::from(r"app/index.html");
Ok(NamedFile::open(path)?)
}