mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 21:47:08 +00:00
12 lines
165 B
Swift
12 lines
165 B
Swift
import SecretAgentKit
|
|
|
|
class StubFileHandleWriter: FileHandleWriter {
|
|
|
|
var data = Data()
|
|
|
|
func write(_ data: Data) {
|
|
self.data.append(data)
|
|
}
|
|
|
|
}
|