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

com.litongjava.tio.utils.notification.LarksuiteNotification Maven / Gradle / Ivy

package com.litongjava.tio.utils.notification;

import java.util.Map;

import okhttp3.Response;

public class LarksuiteNotification implements INotification {

  @Override
  public Response send(Map reqMap) {
    return LarksuiteNotificationUtils.send(reqMap);
  }

  @Override
  public Response sendTextMsg(String string) {
    return LarksuiteNotificationUtils.sendTextMsg(string);
  }

  @Override
  public Response sendWarm(NotifactionWarmModel model) {
    return LarksuiteNotificationUtils.sendWarm(model);
  }

  @Override
  public Response send(String webHookUrl, Map reqMap) {
    return LarksuiteNotificationUtils.send(webHookUrl, reqMap);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy