metatext/Shared/Services/Status List Services/StatusListService.swift

10 lines
262 B
Swift
Raw Normal View History

2020-08-18 05:13:37 +00:00
// Copyright © 2020 Metabolist. All rights reserved.
import Foundation
import Combine
protocol StatusListService {
var statusSections: AnyPublisher<[[Status]], Error> { get }
func request(maxID: String?, minID: String?) -> AnyPublisher<Void, Error>
}