Files
Pulse/Sources/PulseCore/RemoteLogger/RemoteLogger-Store.swift
T
2022-07-16 17:50:02 -04:00

17 lines
396 B
Swift
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// The MIT License (MIT)
//
// Copyright (c) 20202022 Alexander Grebenyuk (github.com/kean).
import Foundation
import Network
import Combine
import SwiftUI
@available(iOS 14.0, tvOS 14.0, *)
extension RemoteLogger {
/// Applies the given event to the store.
public static func process(_ event: LoggerStoreEvent, store: LoggerStore) {
store.handleExternalEvent(event)
}
}