Create Basecallback.java

This commit is contained in:
DXL
2020-08-27 12:05:32 +08:00
committed by GitHub
parent 02be9eb6f2
commit 20c52cf1de
+8
View File
@@ -0,0 +1,8 @@
package com.proxgrind.chameleon.callback;
public interface BaseCallback {
interface ErrorCallback<T> {
void onError(T e);
}
}