Compare commits

...

1 Commits

Author SHA1 Message Date
phoenix c8b8d470dc Refactoring (#44)
Reviewed-on: #44
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-06-29 20:39:04 +00:00
3 changed files with 6 additions and 4 deletions
+2
View File
@@ -1,2 +1,4 @@
/target /target
.env .env
.env.local
.env.docker
+1 -1
View File
@@ -16,7 +16,7 @@ pub mod db {
pub async fn create_pool() -> Result<sqlx::PgPool, sqlx::Error> { pub async fn create_pool() -> Result<sqlx::PgPool, sqlx::Error> {
let database_url = icarus_envy::environment::get_db_url().await; let database_url = icarus_envy::environment::get_db_url().await;
println!("Database url: {:?}", database_url); println!("Database url: {database_url}");
PgPoolOptions::new() PgPoolOptions::new()
.max_connections(connection_settings::MAXCONN) .max_connections(connection_settings::MAXCONN)
+3 -3
View File
@@ -57,7 +57,7 @@ pub mod user {
.fetch_optional(pool) .fetch_optional(pool)
.await .await
.map_err(|e| { .map_err(|e| {
eprintln!("Error updating time: {}", e); eprintln!("Error updating time: {e}");
e e
}); });
@@ -113,7 +113,7 @@ pub mod user {
.fetch_one(pool) .fetch_one(pool)
.await .await
.map_err(|e| { .map_err(|e| {
eprintln!("Error inserting item: {}", e); eprintln!("Error inserting item: {e}");
e e
})?; })?;
@@ -180,7 +180,7 @@ pub mod salt {
.fetch_one(pool) .fetch_one(pool)
.await .await
.map_err(|e| { .map_err(|e| {
eprintln!("Error inserting item: {}", e); eprintln!("Error inserting item: {e}");
e e
})?; })?;