EventHandler is an interface for allowing an EventQueue to handle events in a generic way. To be processed by the EventQueue, all event types must implement any function specified in this interface.
| 302 | // in a generic way. To be processed by the EventQueue, all event types must |
| 303 | // implement any function specified in this interface. |
| 304 | type EventHandler interface { |
| 305 | Handle(chan any) |
| 306 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…