Files
eight-track/src/main/java/net/locusworks/discord/eighttrack/annotations/DiscordEventListener.java
Isaac Parenteau f051e98768
All checks were successful
Locusworks Team/eight-track/pipeline/head This commit looks good
Updated files to work properly with applogger. Reworking how commands are called?
2020-05-30 21:58:46 -05:00

13 lines
324 B
Java

package net.locusworks.discord.eighttrack.annotations;
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.TYPE)
public @interface DiscordEventListener {
}