All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fireflysource.wechat.enterprise.group.bot.service.GroupBotMessageServiceFactory.kt Maven / Gradle / Ivy

package com.fireflysource.wechat.enterprise.group.bot.service

import com.fireflysource.f
import com.fireflysource.net.http.client.HttpClient
import com.fireflysource.wechat.enterprise.group.bot.service.impl.AsyncGroupBotMessageService

/**
 * @author Pengtao Qiu
 */
object GroupBotMessageServiceFactory {

    @JvmOverloads
    fun create(webHookUrl: String, httpClient: HttpClient = f.httpClient()): GroupBotMessageService {
        return AsyncGroupBotMessageService(webHookUrl, httpClient)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy