Event implements [Resolver] and it is intended to be used as a base Hook event that you can embed in your custom typed event structs. Example: type CustomEvent struct { hook.Event SomeField int }
| 23 | // SomeField int |
| 24 | // } |
| 25 | type Event struct { |
| 26 | next func() error |
| 27 | } |
| 28 | |
| 29 | // Next calls the next hook handler. |
| 30 | func (e *Event) Next() error { |
nothing calls this directly
no outgoing calls
no test coverage detected