mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-02-01 23:13:36 +00:00
9 lines
171 B
Java
9 lines
171 B
Java
package com.cappielloantonio.play.interfaces;
|
|
|
|
public interface SystemCallback {
|
|
|
|
void onError(Exception exception);
|
|
|
|
void onSuccess(String token, String salt);
|
|
}
|