alamin655 commited on
Commit
abc59b2
·
unverified ·
1 Parent(s): d28cbb9

🧹 chore: make clippy happy (#386)

Browse files
Files changed (1) hide show
  1. src/cache/redis_cacher.rs +1 -1
src/cache/redis_cacher.rs CHANGED
@@ -1,9 +1,9 @@
1
  //! This module provides the functionality to cache the aggregated results fetched and aggregated
2
  //! from the upstream search engines in a json format.
3
 
 
4
  use error_stack::Report;
5
  use futures::future::try_join_all;
6
- use blake3::hash;
7
  use redis::{aio::ConnectionManager, AsyncCommands, Client, RedisError};
8
 
9
  use super::error::CacheError;
 
1
  //! This module provides the functionality to cache the aggregated results fetched and aggregated
2
  //! from the upstream search engines in a json format.
3
 
4
+ use blake3::hash;
5
  use error_stack::Report;
6
  use futures::future::try_join_all;
 
7
  use redis::{aio::ConnectionManager, AsyncCommands, Client, RedisError};
8
 
9
  use super::error::CacheError;