From 1ccaab95780641412a23e0bd324f7f0a3e8c111d Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Thu, 21 Nov 2024 16:40:05 -0800 Subject: [PATCH] chore: cleanup unused imports I commented the thing that uses this out --- src/router/records.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router/records.rs b/src/router/records.rs index 26c1bfd..df12aa0 100644 --- a/src/router/records.rs +++ b/src/router/records.rs @@ -1,4 +1,4 @@ -use axum::{extract::State, response::IntoResponse, routing::get, Json, Router}; +use axum::{extract::State, response::IntoResponse, routing::get, Router}; use reqwest::StatusCode; use crate::{db::CacheRecordName, templates::LinkListTemplate, AppState};