mirai

inline fun BotRegistrar.mirai(block: MiraiBotManager.() -> Unit)(source)

ApplicationBuilder.bots 作用域中寻找并使用 MiraiBotManager.

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

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

Throws