mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02: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)
|
|
}
|