From b5c6ad1309b3d223ab2513e11049a97c84e9c3f9 Mon Sep 17 00:00:00 2001 From: rascul Date: Sun, 24 Jul 2022 10:09:48 -0500 Subject: [PATCH] fmt --- src/routes/replay.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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