hal/src/zutil/test/UpdateServerTest.java

14 lines
245 B
Java
Raw Normal View History

2008-11-14 16:38:36 +00:00
package zutil.test;
2011-02-15 19:37:04 +00:00
import zutil.net.UpdateServer;
2008-11-14 16:38:36 +00:00
public class UpdateServerTest {
public static void main(String[] args){
try {
new UpdateServer(2000, "server");
}catch (Exception e) {
e.printStackTrace();
}
}
}