tempus/app/src/main/java/com/cappielloantonio/tempo/interfaces/SystemCallback.java

10 lines
247 B
Java
Raw Normal View History

2023-06-17 15:30:23 +02:00
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) {}
}