Skip to content

Commit

Permalink
style: changed import positions
Browse files Browse the repository at this point in the history
  • Loading branch information
NewtTheWolf committed Sep 18, 2024
1 parent 3da2e41 commit 8cbc30d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/rocket/introspection/guard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ use rocket::figment::Figment;
use rocket::http::Status;
use rocket::request::{FromRequest, Outcome};
use rocket::{async_trait, Request};
use std::collections::BTreeSet;
use std::collections::HashMap;

#[cfg(feature = "rocket_okapi")]
use rocket_okapi::{
gen::OpenApiGenerator,
Expand All @@ -14,12 +17,9 @@ use rocket_okapi::{
okapi::Map,
request::{OpenApiFromRequest, RequestHeaderInput},
};

#[cfg(feature = "rocket_okapi")]
use schemars::schema::{InstanceType, ObjectValidation, Schema, SchemaObject};
#[cfg(feature = "rocket_okapi")]
use std::collections::BTreeSet;
use std::collections::HashMap;

use crate::oidc::introspection::{introspect, IntrospectionError, ZitadelIntrospectionResponse};
use crate::rocket::introspection::IntrospectionConfig;
Expand Down

0 comments on commit 8cbc30d

Please sign in to comment.