6 lines
155 B
Kotlin
6 lines
155 B
Kotlin
package app.images
|
|
|
|
interface ImagesCache {
|
|
fun getCachedImage(urlSource: String): ByteArray?
|
|
fun cacheImage(urlSource: String, image: ByteArray)
|
|
} |