mirror of
https://github.com/maxgoedjen/secretive.git
synced 2024-11-22 13:37:07 +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)
|
||
|
}
|
||
|
|
||
|
}
|