| 14 | type EventHandler func() |
| 15 | |
| 16 | type Event struct { |
| 17 | handlers []eventHandlerInfo |
| 18 | } |
| 19 | |
| 20 | func (e *Event) Attach(handler EventHandler) int { |
| 21 | handlerInfo := eventHandlerInfo{handler, false} |
nothing calls this directly
no outgoing calls
no test coverage detected