vibetunnel/mac/VibeTunnel/Core/Services/ControlProtocol+Sendable.swift

7 lines
264 B
Swift

import Foundation
/// Extension to make ControlMessage properly Sendable
extension ControlMessage: @unchecked Sendable {
// The payload dictionary is not technically Sendable, but we control
// its usage and ensure thread safety through actor isolation
}