mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-11 11:00:15 +08:00
22 lines
760 B
Plaintext
22 lines
760 B
Plaintext
|
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()
|
||
|
|
||
|
val pluginInstance = ${CLASS_NAME}#if (${NOT_KOTLIN} != "Kotlin").INSTANCE #end
|
||
|
|
||
|
|
||
|
pluginInstance.load() // 主动加载插件, Console 会调用 MyPluginMain.onLoad
|
||
|
pluginInstance.enable() // 主动启用插件, Console 会调用 MyPluginMain.onEnable
|
||
|
|
||
|
val bot = MiraiConsole.addBot(123456, "").alsoLogin() // 登录一个测试环境的 Bot
|
||
|
|
||
|
MiraiConsole.job.join()
|
||
|
}
|