revanced-patches/src/main/kotlin/app/revanced/generator/PatchesFileGenerator.kt

8 lines
150 B
Kotlin
Raw Normal View History

2024-02-15 04:38:06 +01:00
package app.revanced.generator
import app.revanced.patcher.PatchSet
internal interface PatchesFileGenerator {
fun generate(patches: PatchSet)
}