mirror of
https://github.com/pocketbase/pocketbase.git
synced 2026-09-18 04:20:58 +02:00
replaced interface{} with any
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user