summaryrefslogtreecommitdiff
path: root/vendor/github.com/uptrace/bun/schema/hook.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2024-04-15 11:01:20 +0100
committerLibravatar GitHub <noreply@github.com>2024-04-15 12:01:20 +0200
commit1018cde107f8832cafab64f9003dcde0a055899c (patch)
treed676685511306377c419af09e93355c57be760ce /vendor/github.com/uptrace/bun/schema/hook.go
parent[chore]: Bump golang.org/x/net from 0.23.0 to 0.24.0 (#2834) (diff)
downloadgotosocial-1018cde107f8832cafab64f9003dcde0a055899c.tar.xz
[chore] bump bun library versions (#2837)
Diffstat (limited to 'vendor/github.com/uptrace/bun/schema/hook.go')
-rw-r--r--vendor/github.com/uptrace/bun/schema/hook.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/vendor/github.com/uptrace/bun/schema/hook.go b/vendor/github.com/uptrace/bun/schema/hook.go
index 624601c9f..b83106d80 100644
--- a/vendor/github.com/uptrace/bun/schema/hook.go
+++ b/vendor/github.com/uptrace/bun/schema/hook.go
@@ -28,22 +28,6 @@ var beforeAppendModelHookType = reflect.TypeOf((*BeforeAppendModelHook)(nil)).El
//------------------------------------------------------------------------------
-type BeforeScanHook interface {
- BeforeScan(context.Context) error
-}
-
-var beforeScanHookType = reflect.TypeOf((*BeforeScanHook)(nil)).Elem()
-
-//------------------------------------------------------------------------------
-
-type AfterScanHook interface {
- AfterScan(context.Context) error
-}
-
-var afterScanHookType = reflect.TypeOf((*AfterScanHook)(nil)).Elem()
-
-//------------------------------------------------------------------------------
-
type BeforeScanRowHook interface {
BeforeScanRow(context.Context) error
}