mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2026-04-18 12:51:23 +00:00
10 lines
225 B
Java
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);
|
|
}
|