1
mirror of https://github.com/CarmJos/MineSQL.git synced 2026-06-05 00:48:16 +08:00

add getSqlManager method

This commit is contained in:
Ghost_chu
2022-02-04 14:06:46 +08:00
parent 023cff1bbd
commit 2d31e5ac87
4 changed files with 34 additions and 1 deletions
@@ -1,4 +1,15 @@
package cc.carm.plugin.easysql.api;
import cc.carm.lib.easysql.api.SQLManager;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public interface EasySQLPluginPlatform {
/**
* 获取 SQL 管理器
* @param name 注册键
* @return SQL管理器
*/
@Nullable
SQLManager getSqlManager(@NotNull String name);
}