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