mirror of
https://github.com/maxgoedjen/secretive.git
synced 2025-06-30 19:20:56 +00:00
13 lines
183 B
Swift
13 lines
183 B
Swift
import Foundation
|
|
import SecretAgentKit
|
|
|
|
class StubFileHandleWriter: FileHandleWriter {
|
|
|
|
var data = Data()
|
|
|
|
func write(_ data: Data) {
|
|
self.data.append(data)
|
|
}
|
|
|
|
}
|