20 lines
403 B
Swift
20 lines
403 B
Swift
//
|
|
// SyncBookmarksUseCase.swift
|
|
// readeck
|
|
//
|
|
// Created by Ilyas Hallak on 15.06.25.
|
|
//
|
|
|
|
class SyncBookmarksUseCase {
|
|
|
|
let bookmarkRepository: BookmarkSyncRepository
|
|
|
|
init(bookmarkRepository: BookmarkSyncRepository) {
|
|
self.bookmarkRepository = bookmarkRepository
|
|
}
|
|
|
|
func execute() async throws {
|
|
try await self.bookmarkRepository.syncBookmarks()
|
|
}
|
|
}
|