package com.community.pocket.util; import org.jetbrains.annotations.NotNull; import okhttp3.Call; import okhttp3.Response; /** * 解析接口返回数据 * * @param 转化实体类型 */ public interface HttpParse { void onParseOk(@NotNull Call call, @NotNull Response response, T t); }