mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-24 00:51:53 +00:00
9 lines
183 B
Kotlin
9 lines
183 B
Kotlin
class SqlRepository : Repository {
|
|
override fun find(id: Int): String {
|
|
return "found"
|
|
}
|
|
|
|
override fun save(entity: String): Boolean {
|
|
return true
|
|
}
|
|
}
|