chore: ⬆️ updated deps

This commit is contained in:
2026-05-20 22:52:20 +02:00
parent d9f27c1775
commit 43f4680176
374 changed files with 295527 additions and 301467 deletions
+2
View File
@@ -18,12 +18,14 @@ var (
bytesType = reflect.TypeFor[[]byte]()
)
// Model is implemented by all Bun models.
type Model = schema.Model
type rowScanner interface {
ScanRow(ctx context.Context, rows *sql.Rows) error
}
// TableModel describes models that map to database tables and support query lifecycle hooks.
type TableModel interface {
Model