Handler is both a PacketHandler and a EventHandler
| 16 | |
| 17 | // Handler is both a PacketHandler and a EventHandler |
| 18 | type Handler interface { |
| 19 | EventHandler |
| 20 | PacketHandler |
| 21 | } |
| 22 | |
| 23 | type handler struct { |
| 24 | mu sync.RWMutex |
nothing calls this directly
no outgoing calls
no test coverage detected