Skip to content

Commit

Permalink
chore: 디렉토리 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Aug 12, 2024
1 parent 0eb7a66 commit aed594a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.easyhz.noffice.core.network.converter

import com.easyhz.noffice.core.network.model.response.ErrorResponse
import com.easyhz.noffice.core.network.model.response.base.ErrorResponse
import com.google.gson.Gson

class ErrorResponseConverter constructor(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.easyhz.noffice.core.network.model.response
package com.easyhz.noffice.core.network.model.response.base


data class BaseResponse<T> (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.easyhz.noffice.core.network.model.response
package com.easyhz.noffice.core.network.model.response.base

data class ErrorResponse(
val timestamp: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package com.easyhz.noffice.core.network.util

import com.easyhz.noffice.core.common.error.NofficeError
import com.easyhz.noffice.core.common.error.getErrorByStatusCode
import com.easyhz.noffice.core.network.model.response.BaseResponse
import com.easyhz.noffice.core.network.model.response.base.BaseResponse

typealias NofficeResult<T> = kotlin.Result<BaseResponse<T>>

Expand Down

0 comments on commit aed594a

Please sign in to comment.