1
0
mirror of https://e.coding.net/circlecloud/YumCore.git synced 2025-09-03 11:46:58 +00:00

feat: 新的MC信息获取代码

Signed-off-by: 502647092 <admin@yumc.pw>
This commit is contained in:
2017-09-28 20:54:56 +08:00
parent b5d65c7169
commit 6ea90b46ff
2 changed files with 128 additions and 94 deletions

View File

@ -0,0 +1,20 @@
package pw.yumc.YumCore.mc;
import org.junit.Test;
import lombok.val;
/**
* Created with IntelliJ IDEA
*
* @author 喵♂呜
* Created on 2017/9/28 18:50.
*/
public class ServerInfoTest {
@Test
public void test() {
val info = new ServerInfo("play.i5mc.com");
info.fetchData();
}
}