diff --git a/crates/kitsune-config/src/lib.rs b/crates/kitsune-config/src/lib.rs index c93ef9a12..6893e32c6 100644 --- a/crates/kitsune-config/src/lib.rs +++ b/crates/kitsune-config/src/lib.rs @@ -2,10 +2,6 @@ #![warn(clippy::all, clippy::pedantic)] #![allow(clippy::missing_errors_doc, forbidden_lint_groups)] -use serde::{Deserialize, Serialize}; -use std::path::Path; -use tokio::fs; - pub mod cache; pub mod captcha; pub mod database; @@ -21,6 +17,10 @@ pub mod server; pub mod storage; pub mod url; +use serde::{Deserialize, Serialize}; +use std::path::Path; +use tokio::fs; + #[derive(Clone, Deserialize, Serialize)] #[serde(rename_all = "kebab-case")] pub struct Configuration {