1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-04-18 12:51:23 +00:00
Files
NewPipe/app/src/main/java/org/schabi/newpipe/player/resolver/Resolver.java
2020-04-02 15:57:50 +02:00

10 lines
225 B
Java

package org.schabi.newpipe.player.resolver;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
public interface Resolver<Source, Product> {
@Nullable
Product resolve(@NonNull Source source);
}