nyx/tests/dynamic_fixtures/java/quarkus_route/GET.java

12 lines
322 B
Java
Raw Normal View History

// Phase 14 fixture stub — minimal `@GET` Jakarta REST annotation.
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 GET {
}