You've already forked FrameTour-BE
12 lines
260 B
Java
12 lines
260 B
Java
package com.ycwl.basic.notify.adapters;
|
|
|
|
import com.ycwl.basic.notify.entity.NotifyContent;
|
|
|
|
import java.util.Map;
|
|
|
|
public interface INotifyAdapter {
|
|
void loadConfig(Map<String, String> _config);
|
|
|
|
void sendTo(NotifyContent notifyContent, String to);
|
|
}
|