Skip to content

Commit

Permalink
💩 :: [#434] 공백 다시 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
KangTaeHoon committed Mar 7, 2024
1 parent ffd829c commit 99d9b50
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ public final class RemoteArtistDataSourceImpl: BaseRemoteDataSource<ArtistAPI>,
public func fetchArtistList() -> Single<[ArtistListEntity]> {
request(.fetchArtistList)
.map([ArtistListResponseDTO].self)
.map { $0.map { $0.toDomain() }}
.map { $0.map { $0.toDomain() } }
}

public func fetchArtistSongList(id: String, sort: ArtistSongSortType, page: Int) -> Single<[ArtistSongListEntity]> {
request(.fetchArtistSongList(id: id, sort: sort, page: page))
.map([ArtistSongListResponseDTO].self)
.map { $0.map { $0.toDomain() }}
.map { $0.map { $0.toDomain() } }
}
}

0 comments on commit 99d9b50

Please sign in to comment.