metatext/Shared/Services/Status List Services/StatusListService.swift
2020-08-17 23:50:45 -07:00

9 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>
}