mirror of
https://github.com/plexusorg/Plex.git
synced 2025-07-04 08:46:41 +00:00
19 lines
373 B
Java
19 lines
373 B
Java
package dev.plex.command.annotation;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* @author Taah
|
|
* @since 4:46 PM [07-07-2023]
|
|
*/
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.METHOD)
|
|
public @interface SubCommand
|
|
{
|
|
String value();
|
|
}
|