Docs for SecretKit (#306)

* Start docc

* Docs

* .

* More
This commit is contained in:
Max Goedjen
2022-01-01 18:10:44 -08:00
committed by GitHub
parent ee3e844519
commit 22d9b37d63
13 changed files with 162 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
import Foundation
extension Bundle {
public var agentBundleID: String {(self.bundleIdentifier?.replacingOccurrences(of: "Host", with: "SecretAgent"))!}
public var hostBundleID: String {(self.bundleIdentifier?.replacingOccurrences(of: "SecretAgent", with: "Host"))!}
}