miraiBots

inline fun ApplicationBuilder<*>.miraiBots(crossinline block: suspend MiraiBotManager.(BotRegistrar) -> Unit)(source)

从当前 ApplicationBuilder 中,通过 ApplicationBuilder.bots 寻找并使用注册的 MiraiBotManager.

simpleApplication {
miraiBots { // it: simboot.BotRegistrar, this: MiraiBotManager
val bot: MiraiBot = register(114514L, "password")
bot.start()
}
}

如果当前环境中不存在 MiraiBotManager, 则会抛出 NoSuchElementException 。 异常不会立即抛出的,而是在此配置被使用的时候才会抛出。

Throws