Files
postgres-json/src/main/kotlin/fr/postgresjson/repository/RepositoryI.kt

13 lines
195 B
Kotlin

package fr.postgresjson.repository
import fr.postgresjson.connexion.Requester
interface RepositoryI {
val requester: Requester
enum class Direction {
asc,
desc
}
}