Skip to content

Commit

Permalink
style: apply makers format
Browse files Browse the repository at this point in the history
  • Loading branch information
rito528 committed Jan 31, 2025
1 parent b4f812a commit 9c37fa5
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions server/infra/resource/src/database/forms/form.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
use crate::{
database::{
components::FormDatabase,
connection::{execute_and_values, query_all_and_values, ConnectionPool},
},
dto::FormDto,
};
use std::str::FromStr;

use async_trait::async_trait;
use domain::{
form::{
Expand All @@ -15,9 +10,16 @@ use domain::{
};
use errors::infra::InfraError;
use futures::future::try_join;
use std::str::FromStr;
use uuid::Uuid;

use crate::{
database::{
components::FormDatabase,
connection::{execute_and_values, query_all_and_values, ConnectionPool},
},
dto::FormDto,
};

#[async_trait]
impl FormDatabase for ConnectionPool {
#[tracing::instrument]
Expand Down

0 comments on commit 9c37fa5

Please sign in to comment.