Revert "Remove unused import"

This reverts commit 69db6d53
This commit is contained in:
thanadolps 2021-04-25 10:43:08 +07:00
parent 39fe99fb11
commit fb57ebe3fe
2 changed files with 4 additions and 4 deletions

View File

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

View File

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