useTencentGuildBotManager

fun <A : Application> ApplicationBuilder<A>.useTencentGuildBotManager(configurator: TencentGuildBotManagerConfiguration.(perceivable: CompletionPerceivable<A>) -> Unit = {})

ApplicationBuilder 中安装使用 TencentGuildBotManager

usage:

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

相当于:

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

See also