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

9 lines
189 B
Java
Raw Normal View History

2023-06-17 15:30:23 +02:00
package com.cappielloantonio.tempo.interfaces;
public interface SystemCallback {
void onError(Exception exception);
void onSuccess(String password, String token, String salt);
}