notificationhackery/src/main/java/eu/mikroskeem/notificationhackery/INotificationBackend.java

7 lines
160 B
Java
Raw Normal View History

2016-12-21 15:15:35 +02:00
package eu.mikroskeem.notificationhackery;
public interface INotificationBackend {
void sendNotification(String title, String body);
void cleanup();
}