mirror of
https://github.com/maxgoedjen/secretive.git
synced 2026-03-17 23:07:23 +01: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)
|
|
}
|
|
|
|
}
|