2023-11-26 05:57:41 +01:00

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>