File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
app/src/main/java/com/poti/android/data Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import okhttp3.RequestBody.Companion.asRequestBody
1111import java.io.File
1212import javax.inject.Inject
1313
14- class FileUploadDataSource @Inject constructor(
14+ class FileUploadRemoteDataSource @Inject constructor(
1515 @param:FileUploadClient private val okHttpClient : OkHttpClient ,
1616) {
1717 suspend fun uploadImage (
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ package com.poti.android.data.repository
22
33import com.poti.android.core.network.util.HttpResponseHandler
44import com.poti.android.data.local.datasource.FileLocalDataSource
5- import com.poti.android.data.remote.datasource.FileUploadDataSource
5+ import com.poti.android.data.remote.datasource.FileUploadRemoteDataSource
66import com.poti.android.domain.repository.FileUploadRepository
77import java.io.File
88import javax.inject.Inject
99
1010class FileUploadRepositoryImpl @Inject constructor(
1111 private val httpResponseHandler : HttpResponseHandler ,
12- private val fileUplaodRemoteDataSource : FileUploadDataSource ,
12+ private val fileUplaodRemoteDataSource : FileUploadRemoteDataSource ,
1313 private val fileLocalDataSource : FileLocalDataSource ,
1414) : FileUploadRepository {
1515 override suspend fun uploadImage (
You can’t perform that action at this time.
0 commit comments