com.github.nezha.httpfetch.QueryParam Maven / Gradle / Ivy
package com.github.nezha.httpfetch;
import java.lang.annotation.*;
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface QueryParam {
String value();
}