mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-27 15:17:38 +00:00
7 lines
264 B
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
|
|
}
|