Implement begining of migration

Move Function/Query definition
This commit is contained in:
2019-06-28 15:52:05 +02:00
parent bfefcac88d
commit ebc1a67420
18 changed files with 378 additions and 78 deletions

View File

@@ -0,0 +1,13 @@
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>
}