mirror of
https://github.com/kean/Pulse.git
synced 2026-05-30 21:07:33 +00:00
17 lines
396 B
Swift
17 lines
396 B
Swift
// The MIT License (MIT)
|
||
//
|
||
// Copyright (c) 2020–2022 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)
|
||
}
|
||
}
|