This commit is contained in:
Nuno Cruces
2025-08-13 03:31:12 +01:00
parent 4b154a842c
commit d8880e4cee
9 changed files with 11 additions and 11 deletions

View File

@@ -35,7 +35,7 @@ type params struct {
*sql.DB
}
func (t params) mustExec(sql string, args ...interface{}) sql.Result {
func (t params) mustExec(sql string, args ...any) sql.Result {
res, err := t.DB.Exec(sql, args...)
if err != nil {
t.Fatalf("Error running %q: %v", sql, err)