Files
ChameleonBLEAPI/appmain/defined/DecryptCallback.java
T

9 lines
204 B
Java
Raw Normal View History

2020-08-27 12:21:09 +08:00
package com.proxgrind.chameleon.defined;
import com.proxgrind.chameleon.detection.ResultBean;
public interface DecryptCallback {
void onMsg(String msg);
void onKey(ResultBean result);
}