mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
11 lines
450 B
Swift
11 lines
450 B
Swift
import Foundation
|
|
|
|
let machServiceName = "com.robotsandpencils.XcodesApp.Helper"
|
|
let clientBundleID = "com.robotsandpencils.XcodesApp"
|
|
let subjectOrganizationalUnit = Bundle.main.infoDictionary!["CODE_SIGNING_SUBJECT_ORGANIZATIONAL_UNIT"] as! String
|
|
|
|
@objc(HelperXPCProtocol)
|
|
protocol HelperXPCProtocol {
|
|
func getVersion(completion: @escaping (String) -> Void)
|
|
func xcodeSelect(absolutePath: String, completion: @escaping (Error?) -> Void)
|
|
}
|