mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-04 00:46:40 +00:00
13 lines
255 B
Java
13 lines
255 B
Java
package dev.plex.command.annotation;
|
|
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface System
|
|
{
|
|
String value() default "";
|
|
|
|
boolean debug() default false;
|
|
}
|