This commit is contained in:
Josh Long
2024-05-17 19:45:43 +02:00
parent 787f7fcdf0
commit 100ade50ab
2 changed files with 9 additions and 0 deletions

View File

@@ -14,6 +14,14 @@ import java.net.URL;
import java.util.*;
import java.util.function.Consumer;
/*
* @author Mark Pollack
* @author Christian Tzolov
* @author Josh Long
* @author Arjen Poutsma
*
*/
public interface ChatClient {
static ChatClientBuilder builder(ChatConnector connector) {
return new ChatClientBuilder(connector);

View File

@@ -15,6 +15,7 @@ import java.util.function.Consumer;
* @author Mark Pollack
* @author Christian Tzolov
* @author Josh Long
* @author Arjen Poutsma
*/
public class DefaultChatClient implements ChatClient {