Launcher/LaunchServer/src/main/java/pro/gravit/launchserver/auth/Feature.java

11 lines
213 B
Java
Raw Normal View History

2021-05-28 15:13:16 +03:00
package pro.gravit.launchserver.auth;
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
@Repeatable(Features.class)
public @interface Feature {
String value();
}