mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
8 lines
189 B
Java
8 lines
189 B
Java
package com.cappielloantonio.tempo.interfaces;
|
|
|
|
public interface SystemCallback {
|
|
|
|
void onError(Exception exception);
|
|
|
|
void onSuccess(String password, String token, String salt);
|
|
}
|