不存在重大问题,但温度采样相关逻辑需要后需添加

This commit is contained in:
2024-12-21 20:52:39 +08:00
parent dba16e99c2
commit 4b41c6470c
11 changed files with 36 additions and 20 deletions

View File

@@ -126,6 +126,12 @@ public class MyTest {
MiraiConsoleTerminalLoader.INSTANCE.startAsDaemon(terminal);
PluginManager.INSTANCE.loadPlugin(App.INSTANCE);
PluginManager.INSTANCE.enablePlugin(App.INSTANCE);
new Scanner(System.in).nextLine();
Scanner scanner = new Scanner(System.in);
String input = scanner.nextLine();
while (true) {
if (input.equals("exit")) {
return;
}
}
}
}