Twidere-App-Android-Twitter.../twidere.component.common/src/main/java/org/mariotaku/simplerestapi/RawCallback.java

14 lines
286 B
Java

package org.mariotaku.simplerestapi;
import org.mariotaku.simplerestapi.http.RestHttpResponse;
import java.io.IOException;
/**
* Created by mariotaku on 15/2/7.
*/
public interface RawCallback extends ErrorCallback {
void result(RestHttpResponse result) throws IOException;
}