mirror of
https://github.com/gabehf/tempus.git
synced 2026-03-08 23:18:17 -07:00
8 lines
171 B
Java
8 lines
171 B
Java
package com.cappielloantonio.tempo.interfaces;
|
|
|
|
import androidx.annotation.Keep;
|
|
|
|
@Keep
|
|
public interface MediaSongIdCallback {
|
|
default void onRecovery(String id) {}
|
|
}
|