- Connect SettingsView font selection to WebView CSS rendering - Add dynamic font size and family mapping in WebView - Implement CSS custom properties for responsive font scaling - Add font family fallback stacks for cross-platform compatibility - Update WebView to use Settings object for typography configuration
14 lines
319 B
Swift
14 lines
319 B
Swift
import Foundation
|
|
|
|
class GetBookmarkArticleUseCase {
|
|
private let repository: PBookmarksRepository
|
|
|
|
init(repository: PBookmarksRepository) {
|
|
self.repository = repository
|
|
}
|
|
|
|
func execute(id: String) async throws -> String {
|
|
return try await repository.fetchBookmarkArticle(id: id)
|
|
}
|
|
}
|