This commit is contained in:
Max Goedjen
2022-01-01 18:03:13 -08:00
parent 56cc559a97
commit 776b4a0b97
6 changed files with 23 additions and 8 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"))!}
}