Skip to content

Commit

Permalink
[FEAT/#302] 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
leeeyubin committed Dec 4, 2024
1 parent ce033e4 commit c9da16d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ android {
}

dependencies {
// data
// core
implementation(project(":core:local"))

//domain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.terning.data.auth.dto.request.SignUpRequestDto
import com.terning.domain.auth.entity.SignUpRequest

fun SignUpRequest.toSignUpRequestDto(): SignUpRequestDto =
com.terning.data.auth.dto.request.SignUpRequestDto(
SignUpRequestDto(
name = name,
profileImage = profileImage,
authType = authType
Expand Down
2 changes: 1 addition & 1 deletion data/search/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ android {
}

dependencies {
// domain
// domain
implementation(project(":domain:search"))
}

0 comments on commit c9da16d

Please sign in to comment.