updated dependencies and golangci-lint to v2

This commit is contained in:
Gani Georgiev
2025-04-12 20:04:04 +03:00
parent d9af1475ef
commit 4cc797071b
18 changed files with 93 additions and 109 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ func (m *JSONArray[T]) Scan(value any) error {
case string:
data = []byte(v)
default:
return fmt.Errorf("Failed to unmarshal JSONArray value: %q.", value)
return fmt.Errorf("failed to unmarshal JSONArray value: %q", value)
}
if len(data) == 0 {