diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-16 22:40:24 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-16 22:40:24 +0200 |
commit | 99bb59373b5918b2baf7e70f510d2b0ec1122a28 (patch) | |
tree | c44dc2572c520402812fab2c62bf9f96d1cf2628 /src/db.rs | |
parent | ccde4a437999267ae1f62316bebcc09ea7dc027d (diff) |
Use `AppState` instead of `String` using some traits
Diffstat (limited to 'src/db.rs')
-rw-r--r-- | src/db.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |