src/main/java/ml/peya/plugins/BungeeStructure/Command.java
package ml.peya.plugins.BungeeStructure;
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.METHOD})
public @interface Command
{
String label();
}