mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-01-10 09:39:53 +03:00
11 lines
213 B
Java
11 lines
213 B
Java
|
package pro.gravit.launchserver.auth;
|
||
|
|
||
|
import java.lang.annotation.*;
|
||
|
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@Target({ElementType.TYPE})
|
||
|
@Repeatable(Features.class)
|
||
|
public @interface Feature {
|
||
|
String value();
|
||
|
}
|