mirai
在 ApplicationBuilder.bots 作用域中寻找并使用 MiraiBotManager.
simpleApplication {
bots {// this: BotRegistrar
mirai { // this: MiraiBotManager
val bot: MiraiBot = register(114514L, "password")
bot.start()
}
}
}
Content copied to clipboard
如果当前环境中不存在 MiraiBotManager, 则会抛出 NoSuchElementException 。 异常不会立即抛出的,而是在此配置被使用的时候才会抛出。
Throws
当目标 BotRegistrar 中不存在 MiraiBotManager 时。