mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
a2beab245f
* fixed a typo
12 lines
131 B
Java
12 lines
131 B
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
|
|
|
|
public interface MessageHandler {
|
|
|
|
public void handle(String topic, String... messages);
|
|
|
|
}
|