From 0bab89fac4b071421fbc6b45816f6974b6b02489 Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Tue, 16 Nov 2021 23:04:51 -0800 Subject: [PATCH] WIP --- SecretAgent/AppDelegate.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SecretAgent/AppDelegate.swift b/SecretAgent/AppDelegate.swift index 4234172..2cdc27f 100644 --- a/SecretAgent/AppDelegate.swift +++ b/SecretAgent/AppDelegate.swift @@ -23,6 +23,7 @@ class AppDelegate: NSObject, NSApplicationDelegate { let path = (NSHomeDirectory() as NSString).appendingPathComponent("socket.ssh") as String return SocketController(path: path) }() + // TODO: CLEANUP private lazy var fakeFile: PublicKeyStandinFileStoreController = { PublicKeyStandinFileStoreController(secrets: storeList.stores.flatMap({ $0.secrets })) }() @@ -38,6 +39,7 @@ class AppDelegate: NSObject, NSApplicationDelegate { guard let update = update else { return } self.notifier.notify(update: update, ignore: self.updater.ignore(release:)) } + // TODO: CLEANUP DispatchQueue.main.async { print(self.fakeFile) }