com.litongjava.tio.utils.notification.WeComNotification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-utils Show documentation
Show all versions of tio-utils Show documentation
t-io is a aio framework for java
package com.litongjava.tio.utils.notification;
import java.util.Map;
import okhttp3.Response;
public class WeComNotification implements INotification {
@Override
public Response send(Map reqMap) {
return WeComNotificationUtils.send(reqMap);
}
@Override
public Response sendTextMsg(String string) {
return WeComNotificationUtils.sendTextMsg(string);
}
@Override
public Response sendWarm(NotifactionWarmModel model) {
return WeComNotificationUtils.sendWarm(model);
}
@Override
public Response send(String webHookUrl, Map reqMap) {
return WeComNotificationUtils.send(webHookUrl, reqMap);
}
}