| 38 | } |
| 39 | |
| 40 | type callback struct { |
| 41 | name string |
| 42 | before string |
| 43 | after string |
| 44 | remove bool |
| 45 | replace bool |
| 46 | match func(*DB) bool |
| 47 | handler func(*DB) |
| 48 | processor *processor |
| 49 | } |
| 50 | |
| 51 | func (cs *callbacks) Create() *processor { |
| 52 | return cs.processors["create"] |
nothing calls this directly
no outgoing calls
no test coverage detected