Files
im-system/io-study-master/io-study/src/main/java/netty/heaetbeat/Starter.java
2023-09-07 00:56:03 +08:00

23 lines
309 B
Java

package netty.heaetbeat;
import netty.heaetbeat.server.DiscardServer;
/**
* @description:
* @author: lld
* @version: 1.0
*/
public class Starter {
//2
//
//0-2 + 1 = 3 ___3 //5
public static void main(String[] args) throws Exception {
new DiscardServer(9001).run();
}
}