useQQGuildBotManager
fun ApplicationFactoryConfigurer<*, *, *>.useQQGuildBotManager(configurator: ConfigurerFunction<QQGuildBotManagerConfiguration>? = null)(source)
在 ApplicationBuilder 中 尝试 安装使用 QQGuildBotManager。
usage:
simbotApplication(Foo) {
useQQGuildBotManager()
// 或
useQQGuildBotManager { ... }
}
Content copied to clipboard
相当于:
simbotApplication(Foo) {
install(QQGuildBotManager) { ... }
}
Content copied to clipboard