File tree Expand file tree Collapse file tree
Neki-iOS/Features/Archive/Sources/Domain/Sources/Client Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import DependenciesMacros
1111
1212@DependencyClient
1313public 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)
You can’t perform that action at this time.
0 commit comments