Files
pork/execution/src/main/kotlin/gay/pizza/pork/execution/NativeProvider.kt
2025-07-20 19:57:09 -07:00

7 lines
197 B
Kotlin

package gay.pizza.pork.execution
interface NativeProvider {
fun provideNativeFunction(definitions: List<String>): NativeFunction
fun provideNativeType(definitions: List<String>): NativeType
}