mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 23:10:01 +00:00
12 lines
162 B
Go
12 lines
162 B
Go
|
package sqlitedialect
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
|
||
|
"github.com/uptrace/bun/schema"
|
||
|
)
|
||
|
|
||
|
func scanner(typ reflect.Type) schema.ScannerFunc {
|
||
|
return schema.Scanner(typ)
|
||
|
}
|