botConfigure

fun botConfigure(configure: BotConfiguration.(appId: String, secret: String, token: String) -> Unit)(source)

对所有bot的配置信息进行统一处理的函数。 使用当前函数会保留之前的配置。

如果想直接覆盖配置并抛弃之前的配置,考虑使用同名的属性 botConfigure.

e.g.

botConfigure { appId, secret, token -> /* ... */}

var botConfigure: BotConfiguration.(appId: String, secret: String, token: String) -> Unit(source)

对所有bot的配置信息进行统一处理的函数。 如果直接对 botConfigure 进行赋值,则会覆盖之前的配置。

如果想要以 追加 的形式进行配置,考虑使用同名的函数 botConfigure.

e.g.

botConfigure = { appId, secret, token -> /* ... */}