-
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.
- Loading branch information
朱培杰
committed
Dec 21, 2018
1 parent
bdb97f3
commit 981b43f
Showing
8 changed files
with
1,088 additions
and
716 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
31 changes: 31 additions & 0 deletions
31
src/main/java/com/github/unclecatmyself/auto/ConfigFactory.java
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,31 @@ | ||
package com.github.unclecatmyself.auto; | ||
|
||
import com.github.unclecatmyself.bootstrap.data.InChatToDataBaseService; | ||
import com.github.unclecatmyself.bootstrap.verify.InChatVerifyService; | ||
|
||
/** | ||
* 默认配置工厂 | ||
* Created by MySelf on 2018/12/21. | ||
*/ | ||
public class ConfigFactory { | ||
|
||
public static InChatVerifyService inChatVerifyService; | ||
|
||
public static InChatToDataBaseService inChatToDataBaseService; | ||
|
||
public InChatVerifyService getInChatVerifyService() { | ||
return inChatVerifyService; | ||
} | ||
|
||
public void setInChatVerifyService(InChatVerifyService inChatVerifyService) { | ||
this.inChatVerifyService = inChatVerifyService; | ||
} | ||
|
||
public InChatToDataBaseService getInChatToDataBaseService() { | ||
return inChatToDataBaseService; | ||
} | ||
|
||
public void setInChatToDataBaseService(InChatToDataBaseService inChatToDataBaseService) { | ||
this.inChatToDataBaseService = inChatToDataBaseService; | ||
} | ||
} |
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
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