replaced interface{} with any

This commit is contained in:
Gani Georgiev
2023-10-01 18:45:27 +03:00
parent 5732bc38e3
commit 2f5cfcfe87
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ func (j JsonRaw) Value() (driver.Value, error) {
// Scan implements [sql.Scanner] interface to scan the provided value
// into the current JsonRaw instance.
func (j *JsonRaw) Scan(value interface{}) error {
func (j *JsonRaw) Scan(value any) error {
var data []byte
switch v := value.(type) {