fix: fixed redis connection

This commit is contained in:
2026-02-19 08:32:08 -05:00
parent 2740d223cb
commit d47552faf2
2 changed files with 59 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ func main() {
// Connect to database
db, err := database.Connect(db_config.GetDSN())
if err != nil {
log.Error("Failed to connect to database: ", err)
log.Error("Error", "error", err)
}
defer db.Close()