GitNexus/gitnexus/test/fixtures/lang-resolution/kotlin-interface-dispatch/Repository.kt

4 lines
93 B
Kotlin

interface Repository {
fun find(id: Int): String
fun save(entity: String): Boolean
}