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

9 lines
188 B
Java
Raw Normal View History

package com.cappielloantonio.play.interfaces;
public interface SystemCallback {
void onError(Exception exception);
void onSuccess(String password, String token, String salt);
}