mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-04-18 05:22:11 +00:00
12 lines
217 B
Swift
12 lines
217 B
Swift
import SecretAgentKit
|
|
import AppKit
|
|
|
|
struct StubFileHandleReader: FileHandleReader {
|
|
|
|
let availableData: Data
|
|
var fileDescriptor: Int32 {
|
|
return NSRunningApplication.current.processIdentifier
|
|
}
|
|
|
|
}
|