Add files via upload

This commit is contained in:
DXL
2020-08-27 11:22:49 +08:00
committed by GitHub
parent 7eeb1f6179
commit 51d272e989
13 changed files with 162 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
package com.proxgrind.chameleon.callback;
public interface BaseCallback {
interface ErrorCallback<T> {
void onError(T e);
}
}