2023-11-26 05:57:41 +01:00

9 lines
169 B
Kotlin

package app.revanced.patcher
import app.revanced.patcher.patch.Patch
@FunctionalInterface
interface PatchesConsumer {
fun acceptPatches(patches: List<Patch<*>>)
}