Created the CommandInfo with basic information

This commit is contained in:
mathias 2021-10-02 01:04:49 +02:00
parent d1609478e4
commit 6273615273
No known key found for this signature in database
GPG Key ID: 8950DF62139C852A

View File

@ -0,0 +1,17 @@
package de.gnmyt.autoresponder.commands.annotations;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention(RetentionPolicy.RUNTIME)
public @interface CommandInfo {
String[] aliases();
String[] bannedGroupNames() default {};
String[] bannedUserNames() default {};
String description() default "No description set";
}