gotosocial/vendor/github.com/uptrace/bun/dialect/pgdialect/scan.go

12 lines
158 B
Go
Raw Normal View History

package pgdialect
import (
"reflect"
"github.com/uptrace/bun/schema"
)
func scanner(typ reflect.Type) schema.ScannerFunc {
return schema.Scanner(typ)
}