Skip to content

Commit

Permalink
refactoring camera in external module [FoKE-Developers#76]
Browse files Browse the repository at this point in the history
- external camera 기능의 모듈 내 위치 변경
  • Loading branch information
DokySp committed Oct 10, 2024
1 parent 4a56a29 commit 836acd0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.foke.together.external.network
package com.foke.together.external.camera.external

import okhttp3.ResponseBody
import retrofit2.http.GET
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.foke.together.external.network
package com.foke.together.external.camera.external

import com.foke.together.external.network.interceptor.BaseUrlInterceptor
import com.foke.together.external.camera.external.interceptor.BaseUrlInterceptor
import okhttp3.ResponseBody
import javax.inject.Inject

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.foke.together.external.network
package com.foke.together.external.camera.external

import com.foke.together.external.network.interceptor.BaseUrlInterceptor
import com.foke.together.external.camera.external.interceptor.BaseUrlInterceptor
import com.foke.together.util.AppPolicy
import com.foke.together.util.retrofit.NetworkCallAdapterFactory
import com.google.gson.GsonBuilder
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.foke.together.external.network.interceptor
package com.foke.together.external.camera.external.interceptor

import com.foke.together.util.AppLog
import com.foke.together.util.AppPolicy
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.foke.together.external.network.interceptor
package com.foke.together.external.camera.external.interceptor

import okhttp3.Interceptor
import okhttp3.Protocol
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.foke.together.external.local
package com.foke.together.external.camera.internal

class AndroidCameraDataSource {
// TODO: add android camera api here
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package com.foke.together.external.repository
import android.graphics.Bitmap
import android.graphics.BitmapFactory
import com.foke.together.domain.output.ExternalCameraRepositoryInterface
import com.foke.together.external.network.ExternalCameraDataSource
import com.foke.together.external.camera.external.ExternalCameraDataSource
import javax.inject.Inject

class ExternalCameraRepository @Inject constructor(
Expand Down

0 comments on commit 836acd0

Please sign in to comment.