Created the EventListener

This commit is contained in:
mathias 2021-10-01 19:28:22 +02:00
parent d2f04df033
commit c67ce9a93b
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -0,0 +1,11 @@
package de.gnmyt.autoresponder.event.api;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface EventListener {
}