useQQGuildBotManager
fun <A : Application> ApplicationBuilder<A>.useQQGuildBotManager(configurator: QQGuildBotManagerConfiguration.(perceivable: CompletionPerceivable<A>) -> Unit = {})(source)
在 ApplicationBuilder 中 尝试 安装使用 QQGuildBotManager。
usage:
simbotApplication(Foo) {
useQQGuildBotManager()
// 或
useQQGuildBotManager { ... }
}
Content copied to clipboard
相当于:
simbotApplication(Foo) {
install(QQGuildBotManager) { ... }
}
Content copied to clipboard