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