mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
f2e5bedea6
* migrate go version to 1.17 * update contributing
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)
|
|
}
|