mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
9 lines
233 B
Java
9 lines
233 B
Java
package com.cappielloantonio.tempo.interfaces;
|
|
|
|
import androidx.annotation.Keep;
|
|
|
|
@Keep
|
|
public interface ScanCallback {
|
|
default void onError(Exception exception) {}
|
|
default void onSuccess(boolean isScanning, long count) {}
|
|
}
|