mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-11 13:56:16 +00:00
8 lines
177 B
Kotlin
8 lines
177 B
Kotlin
package app.revanced.patcher.patch
|
|
|
|
import app.revanced.patcher.cache.Cache
|
|
|
|
abstract class Patch(val patchName: String) {
|
|
abstract fun execute(cache: Cache): PatchResult
|
|
}
|