diff --git a/src/routes/replay.rs b/src/routes/replay.rs index c9f34bd..da21ee4 100644 --- a/src/routes/replay.rs +++ b/src/routes/replay.rs @@ -2,8 +2,8 @@ use std::fs::File; use std::io::{BufReader, Read}; use std::path::PathBuf; -use actix_web::{get, HttpResponse}; use actix_web::web::{Data, Path}; +use actix_web::{get, HttpResponse}; use handlebars::Handlebars; use log::info; @@ -22,8 +22,6 @@ pub async fn get(id: Path, hb: Data>) -> Result