import Combine import Foundation import Martin final class SharingMiddleware { static let shared = SharingMiddleware() private let gallery = GalleryService() func middleware(state _: AppState, action: AppAction) -> AnyPublisher { switch action { default: return Empty().eraseToAnyPublisher() } } }