mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-09 15:49:39 +00:00
7 lines
197 B
Kotlin
7 lines
197 B
Kotlin
package gay.pizza.pork.execution
|
|
|
|
interface NativeProvider {
|
|
fun provideNativeFunction(definitions: List<String>): NativeFunction
|
|
fun provideNativeType(definitions: List<String>): NativeType
|
|
}
|