mdbc/hook.go

13 lines
169 B
Go
Raw Permalink Normal View History

2022-02-23 08:59:45 +00:00
package mdbc
// Hook mongodb的指令hook
type Hook interface {
Before() error
After() error
}
// UpdateHook 更新指令的hook
type UpdateHook interface {
Hook
}