println connected

This commit is contained in:
Bel LaPointe
2025-12-09 15:52:38 -07:00
parent 8740f890da
commit 18d8d9af77
3 changed files with 33 additions and 0 deletions

View File

@@ -49,6 +49,7 @@ func PSQL(ctx context.Context, conn string, foo func(db *sql.DB) error) error {
}
}
}()
log.Println("connected")
return foo(pg)
}