Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyKitten committed Oct 27, 2024
1 parent e51e720 commit d2d60ca
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion stationapi/src/infrastructure/company_repository.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::sync::Arc;
use async_trait::async_trait;
use sqlx::{MySql, MySqlConnection, Pool};
use std::sync::Arc;

use crate::domain::{
entity::company::Company, error::DomainError, repository::company_repository::CompanyRepository,
Expand Down
2 changes: 1 addition & 1 deletion stationapi/src/infrastructure/line_repository.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::sync::Arc;
use async_trait::async_trait;
use sqlx::{MySql, MySqlConnection, Pool};
use std::sync::Arc;

use crate::domain::{
entity::line::Line, error::DomainError, repository::line_repository::LineRepository,
Expand Down
2 changes: 1 addition & 1 deletion stationapi/src/infrastructure/station_repository.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::sync::Arc;
use async_trait::async_trait;
use sqlx::{MySql, MySqlConnection, Pool};
use std::sync::Arc;

use crate::{
domain::{
Expand Down
2 changes: 1 addition & 1 deletion stationapi/src/infrastructure/train_type_repository.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use std::sync::Arc;
use crate::domain::{
entity::train_type::TrainType, error::DomainError,
repository::train_type_repository::TrainTypeRepository,
};
use async_trait::async_trait;
use sqlx::{MySql, MySqlConnection, Pool};
use std::sync::Arc;

#[derive(sqlx::FromRow, Clone)]
pub struct TrainTypeRow {
Expand Down

0 comments on commit d2d60ca

Please sign in to comment.