From abc59b285875c3bfbff6908b6bd8d4af37d8d3a6 Mon Sep 17 00:00:00 2001 From: alamin655 Date: Mon, 20 Nov 2023 21:38:20 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20make=20clippy=20happy?= =?UTF-8?q?=20(#386)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cache/redis_cacher.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cache/redis_cacher.rs b/src/cache/redis_cacher.rs index b638fa4..0e8ec38 100644 --- a/src/cache/redis_cacher.rs +++ b/src/cache/redis_cacher.rs @@ -1,9 +1,9 @@ //! This module provides the functionality to cache the aggregated results fetched and aggregated //! from the upstream search engines in a json format. +use blake3::hash; use error_stack::Report; use futures::future::try_join_all; -use blake3::hash; use redis::{aio::ConnectionManager, AsyncCommands, Client, RedisError}; use super::error::CacheError;