* defined response for the given module, else it will be returned an error to the chat.
* @param input the full event from the socket.
* @return a well formed response for the IRC protocol
*/
public default Response getResponse(String input) {
return new Response(input, "Not Implemented yet");
}