Define the Handler interface
| 2 | |
| 3 | // Define the Handler interface |
| 4 | type HandlerTest interface { |
| 5 | Serve() |
| 6 | CloseConn(*Conn) error |
| 7 | } |
| 8 | |
| 9 | // Define the EmptyHandler struct |
| 10 | type EmptyHandlerTest struct{} |
nothing calls this directly
no outgoing calls
no test coverage detected