mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-10 05:16:17 +00:00
10 lines
206 B
Kotlin
10 lines
206 B
Kotlin
package app.revanced.patcher.data
|
|
|
|
import java.util.function.Supplier
|
|
|
|
/**
|
|
* A common interface for contexts such as [ResourceContext] and [BytecodeContext].
|
|
*/
|
|
|
|
sealed interface Context<T> : Supplier<T>
|