Skip to content

Commit 06c51ce

Browse files
committed
fmt
1 parent 0c6556f commit 06c51ce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

example/src/app.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
use async_trait::async_trait;
22
use loco_openapi::prelude::*;
33
use loco_rs::{
4+
Result,
45
app::{AppContext, Hooks, Initializer},
56
bgworker::{BackgroundWorker, Queue},
6-
boot::{create_app, BootResult, StartMode},
7+
boot::{BootResult, StartMode, create_app},
78
config::Config,
89
controller::AppRoutes,
910
db::{self, truncate_table},
1011
environment::Environment,
1112
task::Tasks,
12-
Result,
1313
};
1414
use migration::Migrator;
1515
use std::path::Path;

example/src/models/users.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use async_trait::async_trait;
2-
use chrono::{offset::Local, Duration};
2+
use chrono::{Duration, offset::Local};
33
use loco_rs::{auth::jwt, hash, prelude::*};
44
use serde::{Deserialize, Serialize};
55
use serde_json::Map;

example/tests/models/users.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use chrono::{offset::Local, Duration};
1+
use chrono::{Duration, offset::Local};
22
use insta::assert_debug_snapshot;
33
use loco_openapi_example::{
44
app::App,

0 commit comments

Comments
 (0)