remove unused imports

This commit is contained in:
41666 2022-11-26 20:17:18 -05:00
parent a74ae46873
commit 747998e3c6
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
use crate::redispool::RedisPool; use crate::redispool::RedisPool;
use self::types::{Health, World}; use self::types::{Health, World};
use juniper::{graphql_object, meta::Field, FieldResult, ID}; use juniper::{graphql_object, FieldResult};
use rocket::response::content::RawHtml; use rocket::response::content::RawHtml;
pub mod types; pub mod types;

View file

@ -1,6 +1,6 @@
use juniper::graphql_object; use juniper::graphql_object;
use once_cell::sync::Lazy; use once_cell::sync::Lazy;
use rocket_db_pools::deadpool_redis::redis::{cmd, pipe}; use rocket_db_pools::deadpool_redis::redis::cmd;
use std::{ use std::{
collections::HashMap, collections::HashMap,
ops::Sub, ops::Sub,