Sharingang/Sharingang-Android

View on GitHub
app/src/main/java/com/example/sharingang/imagestore/ImageStore.kt

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.example.sharingang.imagestore

import android.net.Uri

/**
 * Interface to implement the image storage on a remote server accessible with HTTP.
 */
interface ImageStore {
    suspend fun store(imageUri: Uri): Uri?
}