feat: centralized star/unstar handling and added offline support

This commit is contained in:
antonio
2023-08-02 10:49:21 +02:00
parent f044db142c
commit c69fbcfa68
2 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.cappielloantonio.tempo.interfaces;
import androidx.annotation.Keep;
@Keep
public interface StarCallback {
default void onError() {}
default void onSuccess() {}
}