2021-06-07 21:20:49 +08:00
|
|
|
package $PACKAGE_NAME
|
|
|
|
|
|
|
|
import net.mamoe.mirai.alsoLogin
|
|
|
|
import net.mamoe.mirai.console.MiraiConsole
|
|
|
|
import net.mamoe.mirai.console.plugin.PluginManager.INSTANCE.enable
|
|
|
|
import net.mamoe.mirai.console.plugin.PluginManager.INSTANCE.load
|
|
|
|
import net.mamoe.mirai.console.terminal.MiraiConsoleTerminalLoader
|
|
|
|
|
|
|
|
suspend fun main() {
|
|
|
|
MiraiConsoleTerminalLoader.startAsDaemon()
|
|
|
|
|
2021-06-07 21:26:57 +08:00
|
|
|
val pluginInstance = ${CLASS_NAME}#if (${LANGUAGE_TYPE} != "Kotlin").INSTANCE #end
|
2021-06-07 21:20:49 +08:00
|
|
|
|
|
|
|
|
2021-06-07 21:26:57 +08:00
|
|
|
pluginInstance.load() // 主动加载插件, Console 会调用 ${CLASS_NAME}.onLoad
|
|
|
|
pluginInstance.enable() // 主动启用插件, Console 会调用 ${CLASS_NAME}.onEnable
|
2021-06-07 21:20:49 +08:00
|
|
|
|
|
|
|
val bot = MiraiConsole.addBot(123456, "").alsoLogin() // 登录一个测试环境的 Bot
|
|
|
|
|
|
|
|
MiraiConsole.job.join()
|
|
|
|
}
|