mirror of
https://github.com/gabehf/tempus.git
synced 2026-03-12 17:00:32 -07:00
9 lines
247 B
Java
9 lines
247 B
Java
package com.cappielloantonio.tempo.interfaces;
|
|
|
|
import androidx.annotation.Keep;
|
|
|
|
@Keep
|
|
public interface SystemCallback {
|
|
default void onError(Exception exception) {}
|
|
default void onSuccess(String password, String token, String salt) {}
|
|
}
|