mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-02 02:13:33 +00:00
10 lines
195 B
Java
10 lines
195 B
Java
package com.cappielloantonio.play.interfaces;
|
|
|
|
import java.util.List;
|
|
|
|
public interface SystemCallback {
|
|
|
|
void onError(Exception exception);
|
|
|
|
void onSuccess(String token, String salt);
|
|
}
|