1
mirror of https://github.com/CarmJos/MineSQL.git synced 2024-09-19 20:25:45 +00:00

添加README

This commit is contained in:
Carm Jos 2022-02-10 02:44:29 +08:00
parent c46d00d5c4
commit b5a3e268bc
2 changed files with 27 additions and 2 deletions

12
README.md Normal file
View File

@ -0,0 +1,12 @@
```text
______ _____ ____ _ _____ _ _
| ____| / ____|/ __ \| | | __ \| | (_)
| |__ __ _ ___ _ _| (___ | | | | | | |__) | |_ _ __ _ _ _ __
| __| / _` / __| | | |\___ \| | | | | | ___/| | | | |/ _` | | '_ \
| |___| (_| \__ \ |_| |____) | |__| | |____ | | | | |_| | (_| | | | | |
|______\__,_|___/\__, |_____/ \___\_\______| |_| |_|\__,_|\__, |_|_| |_|
__/ | __/ |
|___/ |___/
```
# EasySQL-Plugin ~~~~

View File

@ -2,13 +2,12 @@ package cc.carm.plugin.easysql;
import cc.carm.lib.easyplugin.EasyPlugin;
import cc.carm.plugin.easysql.api.DBConfiguration;
import org.bukkit.event.Listener;
import org.jetbrains.annotations.NotNull;
import java.util.HashMap;
import java.util.Map;
public class EasySQLBukkit extends EasyPlugin implements EasySQLPluginPlatform, Listener {
public class EasySQLBukkit extends EasyPlugin implements EasySQLPluginPlatform {
@Override
protected void load() {
@ -25,4 +24,18 @@ public class EasySQLBukkit extends EasyPlugin implements EasySQLPluginPlatform,
return new HashMap<>();
}
@Override
public void outputInfo() {
log("\n" +
"&5&l ______ _____ ____ _ &d&l_____ _ _ \n" +
"&5&l| ____| / ____|/ __ \\| | &d&l| __ \\| | (_) \n" +
"&5&l| |__ __ _ ___ _ _| (___ | | | | | &d&l| |__) | |_ _ __ _ _ _ __ \n" +
"&5&l| __| / _` / __| | | |\\___ \\| | | | | &d&l| ___/| | | | |/ _` | | '_ \\ \n" +
"&5&l| |___| (_| \\__ \\ |_| |____) | |__| | |____ &d&l| | | | |_| | (_| | | | | |\n" +
"&5&l|______\\__,_|___/\\__, |_____/ \\___\\_\\______| &d&l|_| |_|\\__,_|\\__, |_|_| |_|\n" +
"&5&l __/ | &d&l __/ | \n" +
"&5&l |___/ &d&l|___/ "
);
}
}