mirror of
https://github.com/carm-outsource/TimeReward.git
synced 2026-06-04 15:28:16 +08:00
45346b093a
* refactor(update): 适配最新依赖版本 * feat(update): 更新 README,添加更多自定义语言文本。
9 lines
221 B
Java
9 lines
221 B
Java
package cc.carm.plugin.timereward.util;
|
|
|
|
import cc.carm.plugin.timereward.storage.database.MySQLStorage;
|
|
|
|
@FunctionalInterface
|
|
public interface DataTaskRunner {
|
|
void run(MySQLStorage mySQLStorage) throws Exception;
|
|
}
|