Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
fankaiLiu committed Oct 28, 2023
1 parent f2e346b commit dcbd096
Showing 1 changed file with 14 additions and 22 deletions.
36 changes: 14 additions & 22 deletions src/utils/create_project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,33 +48,25 @@ fn after_print_info(project_name: &String, config: UserSelected) {
success(t!("create_success", project_name = project_name).replace(r"\n", "\n"));
match config.db_conn_type {
DbConnectionType::Sqlx => {
success(
t!("create_success_sqlx", project_name = project_name).replace(r"\n", "\n"),
);
success(t!("create_success_sqlx", project_name = project_name).replace(r"\n", "\n"));
}
DbConnectionType::SeaOrm => {
success(
t!("create_success_sea_orm", project_name = project_name).replace(r"\n", "\n"),
);
success(t!("create_success_sea_orm", project_name = project_name).replace(r"\n", "\n"));
}
DbConnectionType::Diesel => {
match config.db_type {
DbType::Sqlite => {
success(t!("create_success_sqlx_sqlite").replace(r"\n", "\n"));
}
_ => {
success(t!("create_success_mysql_or_pgsql").replace(r"\n", "\n"));
}
DbConnectionType::Diesel => match config.db_type {
DbType::Sqlite => {
success(t!("create_success_sqlx_sqlite").replace(r"\n", "\n"));
}
}
DbConnectionType::Rbatis => {
match config.db_type {
DbType::Mysql | DbType::Postgres | DbType::Mssql => {
success(t!("create_success_rbatis"));
}
_ => {}
_ => {
success(t!("create_success_mysql_or_pgsql").replace(r"\n", "\n"));
}
}
},
DbConnectionType::Rbatis => match config.db_type {
DbType::Mysql | DbType::Postgres | DbType::Mssql => {
success(t!("create_success_rbatis"));
}
_ => {}
},
_ => {}
}
}
Expand Down

0 comments on commit dcbd096

Please sign in to comment.