mirror of
https://github.com/mitb-archive/filebot
synced 2025-03-10 06:20:27 -04:00
12 lines
131 B
Java
12 lines
131 B
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
|
|
|
|
public interface MessageHandler {
|
|
|
|
public void handle(String topic, String... messages);
|
|
|
|
}
|