gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

scan.go (158B)


      1 package pgdialect
      2 
      3 import (
      4 	"reflect"
      5 
      6 	"github.com/uptrace/bun/schema"
      7 )
      8 
      9 func scanner(typ reflect.Type) schema.ScannerFunc {
     10 	return schema.Scanner(typ)
     11 }