Add files via upload

This commit is contained in:
DXL
2020-08-27 12:21:09 +08:00
committed by GitHub
parent 93c83af3cb
commit 823fc591dd
12 changed files with 262 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package com.proxgrind.chameleon.defined;
public interface ResultCallback<S, F> {
void onSuccess(S s);
void onFaild(F f);
}