Files
postgres-json/src/main/kotlin/fr/postgresjson/definition/Resource.kt
Fabrice Lecomte ebc1a67420 Implement begining of migration
Move Function/Query definition
2019-06-28 15:58:51 +02:00

13 lines
215 B
Kotlin

package fr.postgresjson.definition
import java.io.File
interface Resource {
val name: String
val script: String
var source: File?
}
interface ResourceCollection {
val parameters: List<Parameter>
}