f713e041ad
* Add comments to kill lint errors
12 lines
214 B
Go
12 lines
214 B
Go
package boil
|
|
|
|
// HookPoint is the point in time at which we hook
|
|
type HookPoint int
|
|
|
|
// the hook point constants
|
|
const (
|
|
HookAfterCreate HookPoint = iota + 1
|
|
HookAfterUpdate
|
|
HookBeforeCreate
|
|
HookBeforeUpdate
|
|
)
|