mirror of
https://github.com/metabolist/metatext.git
synced 2025-01-24 11:48:07 +00:00
10 lines
262 B
Swift
10 lines
262 B
Swift
|
// 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>
|
||
|
}
|