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