first commit

This commit is contained in:
2023-09-07 00:56:03 +08:00
commit c0ca154d31
718 changed files with 56107 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
package netty.chat;
import netty.chat.server.DiscardServer;
/**
* @description:
* @author: lld
* @version: 1.0
*/
public class Starter {
// line
// header
// body
public static void main(String[] args) throws Exception {
new DiscardServer(9001).run();
}
}