// // DataSourceFacade+Bookmark.swift // Mastodon // // Created by ProtoLimit on 2022/07/29. // import UIKit import CoreData import CoreDataStack import MastodonCore extension DataSourceFacade { public static func responseToStatusBookmarkAction( provider: DataSourceProvider, status: ManagedObjectRecord, authenticationBox: MastodonAuthenticationBox ) async throws { let selectionFeedbackGenerator = await UISelectionFeedbackGenerator() await selectionFeedbackGenerator.selectionChanged() _ = try await provider.context.apiService.bookmark( record: status, authenticationBox: authenticationBox ) } }