remove RequesterFactory

This commit is contained in:
2021-07-14 22:40:34 +02:00
parent 4ad69238c7
commit 486b038ad2
8 changed files with 71 additions and 44 deletions

View File

@@ -4,7 +4,7 @@ import java.io.File
import java.net.URL
import java.nio.file.Path
interface Resource {
sealed interface Resource {
val name: String
val script: String
var source: Path?
@@ -34,7 +34,3 @@ interface Resource {
}
}
}
interface ResourceCollection {
val parameters: List<Parameter>
}