refactor: 미사용 코드 제거

This commit is contained in:
이상진 2025-09-18 20:04:01 +09:00
parent 8321356051
commit 5f546f87da

View File

@ -30,11 +30,3 @@ fun StoreEntity.toInfoResponse() = StoreInfoResponse(
contact = this.contact, contact = this.contact,
businessRegNum = this.businessRegNum businessRegNum = this.businessRegNum
) )
data class StoreInfoListResponse(
val stores: List<StoreInfoResponse>
)
fun List<StoreEntity>.toInfoListResponse() = StoreInfoListResponse(
stores = this.map { it.toInfoResponse() }
)