mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-05-28 21:00:14 +02:00
9 lines
169 B
Kotlin
9 lines
169 B
Kotlin
package app.revanced.patcher
|
|
|
|
import app.revanced.patcher.patch.Patch
|
|
|
|
@FunctionalInterface
|
|
interface PatchesConsumer {
|
|
fun acceptPatches(patches: List<Patch<*>>)
|
|
}
|