Skip to content

Commit 57ebb7d

Browse files
committed
reorder imports in config.rs
1 parent e9421dc commit 57ebb7d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/server/config.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#![allow(clippy::module_name_repetitions)]
22

3+
use crate::error::Error;
34
use serde::{Deserialize, Serialize};
45
use serde_with::{DurationSeconds, serde_as};
56
use std::{
@@ -8,8 +9,6 @@ use std::{
89
time::Duration,
910
};
1011

11-
use crate::error::Error;
12-
1312
#[serde_as]
1413
#[derive(Debug, Serialize, Deserialize, Default)]
1514
pub struct Config {

0 commit comments

Comments
 (0)