d89d23e673
* Hooks, query mods, and query * Update and UpdateX
11 lines
186 B
Go
11 lines
186 B
Go
package boil
|
|
|
|
// HookPoint is the point in time at which we hook
|
|
type HookPoint int
|
|
|
|
const (
|
|
HookAfterCreate HookPoint = iota + 1
|
|
HookAfterUpdate
|
|
HookBeforeCreate
|
|
HookBeforeUpdate
|
|
)
|