Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
19
apk_decompiled/sources/retrofit2/http/HTTP.java
Normal file
19
apk_decompiled/sources/retrofit2/http/HTTP.java
Normal file
@@ -0,0 +1,19 @@
|
||||
package retrofit2.http;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target({ElementType.METHOD})
|
||||
@Documented
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface HTTP {
|
||||
boolean hasBody() default false;
|
||||
|
||||
String method();
|
||||
|
||||
String path() default "";
|
||||
}
|
||||
Reference in New Issue
Block a user