mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-01 01:53:31 +00:00
9 lines
184 B
Java
9 lines
184 B
Java
package com.cappielloantonio.tempo.interfaces;
|
|
|
|
import androidx.annotation.Keep;
|
|
|
|
@Keep
|
|
public interface StarCallback {
|
|
default void onError() {}
|
|
default void onSuccess() {}
|
|
}
|