-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
=/ 调整项目结构 对一些不合理的地方进行了重构 by Noseparte
- Loading branch information
Showing
62 changed files
with
717 additions
and
711 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.github.unclecatmyself; | ||
|
||
import com.github.unclecatmyself.auto.ConfigManager; | ||
import com.github.unclecatmyself.auto.InChatServer; | ||
import com.github.unclecatmyself.service.FromServerServiceImpl; | ||
import com.github.unclecatmyself.service.InChatInitializer; | ||
import com.github.unclecatmyself.service.UserAsyncDataListener; | ||
import com.github.unclecatmyself.service.VerifyServiceImpl; | ||
|
||
/** | ||
* Created by MySelf on 2019/8/26. | ||
*/ | ||
public class Application { | ||
|
||
|
||
public static void main(String[] args) { | ||
ConfigManager.initNetty = new InChatInitializer(); | ||
ConfigManager.fromServerService = FromServerServiceImpl.TYPE2; | ||
ConfigManager.asyncDataListener = new UserAsyncDataListener(); | ||
ConfigManager.inChatVerifyService = new VerifyServiceImpl(); | ||
InChatServer.open(); | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
66 changes: 0 additions & 66 deletions
66
src/main/java/com/github/unclecatmyself/bootstrap/backmsg/InChatBackMapServiceImpl.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.