1
0
mirror of https://github.com/maxgoedjen/secretive.git synced 2025-06-01 21:10:57 +00:00
secretive/SecretKit/Common/BundleIDs.swift

8 lines
278 B
Swift

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"))!}
}