Skip to content

Commit e8c9dc0

Browse files
committed
[Chore] #182 - 불필요 코드 제거
1 parent a5e27de commit e8c9dc0

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Neki-iOS/Features/Archive/Sources/Domain/Sources/Client/SharedImageClient.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import DependenciesMacros
1111

1212
@DependencyClient
1313
public struct SharedImageClient {
14-
public var fetchSharedImages: @Sendable (_ appGroupID: String) async throws -> [ImageUploadEntity]
1514
public var fetchSharedImageURLs: @Sendable (_ appGroupID: String) async throws -> [URL]
1615
public var clearSharedImages: @Sendable (_ appGroupID: String) async throws -> Void
1716
}
@@ -21,8 +20,6 @@ extension SharedImageClient: DependencyKey {
2120
@Dependency(\.sharedImageRepository) var sharedImageRepository
2221

2322
return SharedImageClient { appGroupID in
24-
try await sharedImageRepository.fetchSharedImages(appGroupID: appGroupID)
25-
} fetchSharedImageURLs: { appGroupID in
2623
try await sharedImageRepository.fetchSharedImageURLs(appGroupID: appGroupID)
2724
} clearSharedImages: { appGroupID in
2825
try await sharedImageRepository.clearSharedImages(appGroupID: appGroupID)

0 commit comments

Comments
 (0)