// // MainThreadBox.swift // Tusker // // Created by Shadowfacts on 1/27/24. // Copyright © 2024 Shadowfacts. All rights reserved. // import Foundation struct MainThreadBox: @unchecked Sendable { private let _value: T @MainActor var value: T { _value } @MainActor init(value: T) { self._value = value } }