feat: use goreleaser

This commit is contained in:
2025-05-31 21:18:20 +02:00
parent c9065425b1
commit d110d67c52
15 changed files with 394 additions and 835 deletions

View File

@ -25,7 +25,7 @@ func Wait(databaseURL *url.URL, period time.Duration, timeout time.Duration) err
return err
}
}
defer sqlDB.Close()
defer func() { _ = sqlDB.Close() }()
ctx, cancel := context.WithTimeout(context.Background(), timeout)
defer cancel()