We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a5cfac commit 88c1020Copy full SHA for 88c1020
src/main.rs
@@ -39,6 +39,7 @@ async fn main() {
39
40
let url = std::env::var("POSTGRES_URL")
41
.unwrap_or_else(|_| "postgres://postgres:postgres@127.0.0.1:5432/iop".to_owned());
42
+ println!("{url}");
43
let pool = Pool::connect(&url)
44
.await
45
.expect("Unable to connect to database");
0 commit comments