Skip to content

Commit 9d8e775

Browse files
style: format code with Rustfmt
This commit fixes the style issues introduced in e67dd91 according to the output from Rustfmt. Details: None
1 parent e67dd91 commit 9d8e775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/translate.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
use actix_web::{get, post, web, Responder};
22

3+
use crate::errors::ApiError;
34
use crate::models::translate::requests::{
45
CurseForgeTranslationRequest, CurseforgeQuery, ModrinthQuery, ModrinthTranslationRequest,
56
};
@@ -8,7 +9,6 @@ use crate::models::translate::responses::{
89
};
910
use crate::services::translate::{CurseForgeService, ModrinthService};
1011
use crate::utils::app::AppState;
11-
use crate::errors::ApiError;
1212

1313
#[allow(deprecated)]
1414
pub mod deprecated_routes {

0 commit comments

Comments
 (0)