You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
340 B

package net.sopod.soim.client;
import net.sopod.soim.client.net.ImNetClient;
/**
* Main
*
* @author tmy
* @date 2022-03-27 22:32
*/
public class ClientMain {
public static void main(String[] args) throws InterruptedException {
ImNetClient client = new ImNetClient();
client.connect("127.0.0.1", 8088);
}
}