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

测试部署与自动上传

This commit is contained in:
2022-01-29 21:47:37 +08:00
parent d2fd0d58cf
commit d514cb8d0e
4 changed files with 22 additions and 3 deletions
@@ -8,7 +8,7 @@ import org.jetbrains.annotations.Nullable;
*/
public class EasySQLAPI {
public static @Nullable SQLManager getSQLManager(@Nullable String database) {
public static @Nullable SQLManager getSQLManager(@Nullable String name) {
return null;
}
@@ -0,0 +1,15 @@
package cc.carm.plugin.easysql.api;
public class SQLConfiguration {
String driver;
String address;
int port;
String database;
String username;
String password;
}