remove unused imports
This commit is contained in:
parent
a74ae46873
commit
747998e3c6
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue