Skip to content

Commit 5ceb35a

Browse files
committed
fix: param name not std
1 parent 1211016 commit 5ceb35a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • file_classification_core/src/service

file_classification_core/src/service/groups.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ where
1313
groups::create_group(conn, &new_group)
1414
}
1515

16-
pub fn create_group(conn: &mut AnyConnection, create_group_dTO: &CreateGroupDTO) -> Result<usize, Error> {
17-
groups::create_group(conn, create_group_dTO)
16+
pub fn create_group(conn: &mut AnyConnection, create_group_dto: &CreateGroupDTO) -> Result<usize, Error> {
17+
groups::create_group(conn, create_group_dto)
1818
}
1919

2020
pub fn find_group_by_name(

0 commit comments

Comments
 (0)