chore: cargo fmt

This commit is contained in:
alyssa 2024-11-01 06:42:21 +09:00
parent c8b6dc4c23
commit 299be27031
4 changed files with 8 additions and 5 deletions

View file

@ -1,7 +1,7 @@
use fred::{
clients::RedisPool,
error::RedisError,
interfaces::KeysInterface,
clients::RedisPool,
types::{Expiration, SetOptions},
};
use std::fmt::Debug;

View file

@ -1,5 +1,5 @@
use bytes::Bytes;
use fred::{interfaces::HashesInterface, clients::RedisPool};
use fred::{clients::RedisPool, interfaces::HashesInterface};
use prost::Message;
use tracing::info;
use twilight_gateway::Event;

View file

@ -1,5 +1,5 @@
use chrono::Timelike;
use fred::{interfaces::*, clients::RedisPool};
use fred::{clients::RedisPool, interfaces::*};
use signal_hook::{
consts::{SIGINT, SIGTERM},
iterator::Signals,