Remove unused import

This commit is contained in:
thanadolps 2021-04-25 10:31:31 +07:00
parent 869441dbf8
commit 69db6d538b
2 changed files with 4 additions and 4 deletions

View File

@ -1,8 +1,7 @@
//! Fairing implementation
use ::log::{error, info};
use rocket::http::{self, uri::Origin, Status};
use rocket::{self, error_, info_, log_, outcome::Outcome, Request};
use rocket::{self, error_, info_, outcome::Outcome, Request};
use crate::{
actual_request_response, origin, preflight_response, request_headers, validate, Cors, Error,

View File

@ -280,12 +280,13 @@ use std::marker::PhantomData;
use std::ops::Deref;
use std::str::FromStr;
use ::log::{debug, error, info};
use ::log::info;
use regex::RegexSet;
use rocket::http::{self, Status};
use rocket::request::{FromRequest, Request};
use rocket::response;
use rocket::{debug_, error_, info_, log_, outcome::Outcome, State};
use rocket::{debug_, error_, info_, outcome::Outcome, State};
#[cfg(feature = "serialization")]
use serde_derive::{Deserialize, Serialize};