RequestCallback.java 201 B

1234567891011
  1. package com.android.chmo.http;
  2. /**
  3. * Created by Administrator on 2018/7/30.
  4. */
  5. public interface RequestCallback {
  6. void onSuccess(String result);
  7. void onFailure(String error);
  8. }