mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-06-30 19:20:56 +00:00
12 lines
148 B
Swift
12 lines
148 B
Swift
import Foundation
|
|
|
|
struct UncheckedSendable<T>: @unchecked Sendable {
|
|
|
|
let value: T
|
|
|
|
init(_ value: T) {
|
|
self.value = value
|
|
}
|
|
|
|
}
|