增加netty版本

This commit is contained in:
2023-08-20 22:19:23 +08:00
parent a53475fef8
commit eaccee2a9b
41 changed files with 2660 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
package com.sv.service;
import com.sv.netty.ClientThread;
/**
* 启动socker和websocket服务
*
* @author peakren
* @date 05/12/2017 10:25 PM
*/
public class ClientService {
public static void main(String[] args) {
ClientThread instance = ClientThread.getInstance();
instance.start();
}
}