Skip to content

Commit

Permalink
move imports
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Nov 11, 2023
1 parent cb2e09c commit dc3c87e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/kitsune-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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 {
Expand Down

0 comments on commit dc3c87e

Please sign in to comment.