summaryrefslogtreecommitdiff
path: root/src/db.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-16 22:40:24 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-16 22:40:24 +0200
commit99bb59373b5918b2baf7e70f510d2b0ec1122a28 (patch)
treec44dc2572c520402812fab2c62bf9f96d1cf2628 /src/db.rs
parentccde4a437999267ae1f62316bebcc09ea7dc027d (diff)
Use `AppState` instead of `String` using some traits
Diffstat (limited to 'src/db.rs')
-rw-r--r--src/db.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.rs b/src/db.rs
index 4a9e9a7..9644138 100644
--- a/src/db.rs
+++ b/src/db.rs
@@ -6,7 +6,7 @@ use tokio_postgres::{Client, NoTls};
pub async fn setup() -> Result<Client, AppError> {
let database_url = &crate::config::CONFIG.database_url;
- let (client, connection) = tokio_postgres::connect(database_url, NoTls).await.unwrap();
+ let (client, connection) = tokio_postgres::connect(database_url, NoTls).await?;
// Spawn a new task to run the connection to the database
tokio::spawn(async move {