mirror of
https://github.com/revanced/revanced-patcher.git
synced 2025-04-29 21:04:26 +02: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>
|