useQQGuildComponent

fun ApplicationFactoryConfigurer<*, *, *>.useQQGuildComponent(configurator: ConfigurerFunction<QQGuildComponentConfiguration>? = null)(source)

ApplicationBuilder 中安装使用 QQGuildComponent

usage:

simbotApplication(Foo) {
useQQGuildComponent()
// 或
useQQGuildComponent { ... }
}

相当于:

simbotApplication(Foo) {
install(QQGuildComponent) { ... }
}

See also