useKookBotManager
fun <A : Application> ApplicationBuilder<A>.useKookBotManager(configurator: KookBotManagerConfiguration.(perceivable: CompletionPerceivable<A>) -> Unit = {})
注册使用 Kook botManager。
usage:
simbotApplication(Foo) {
useKookBotManager()
// 或
useKookBotManager { ... }
}
Content copied to clipboard
相当于:
simbotApplication(Foo) {
install(KookBotManager) { ... }
}
Content copied to clipboard