Files
Plex/server/src/main/java/dev/plex/command/annotation/SubCommand.java
2023-07-10 20:47:52 -07:00

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();
}