1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-06-30 17:13:19 +00:00
NewPipe/app/src/main/java/org/schabi/newpipe/player/resolver/Resolver.java

10 lines
225 B
Java
Raw Normal View History

package org.schabi.newpipe.player.resolver;
2019-10-04 12:59:08 +00:00
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
2018-05-12 03:09:02 +00:00
public interface Resolver<Source, Product> {
@Nullable
Product resolve(@NonNull Source source);
}