NetNewsWire/Modules/Account/Sources/Account/Feedly/Services/FeedlyGetEntriesService.swift
2025-01-22 22:00:38 -08:00

14 lines
332 B
Swift

//
// FeedlyGetEntriesService.swift
// Account
//
// Created by Kiel Gillard on 28/10/19.
// Copyright © 2019 Ranchero Software, LLC. All rights reserved.
//
import Foundation
protocol FeedlyGetEntriesService: AnyObject {
func getEntries(for ids: Set<String>, completion: @escaping (Result<[FeedlyEntry], Error>) -> Void)
}