Fix broken XPC Service retrieval

This commit is contained in:
Nindi Gill 2022-09-21 20:26:09 +10:00
parent 997a79e330
commit c49b5a64ee
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ import Foundation
import SecureXPC
extension XPCRoute {
static let commandRoute: XPCRouteWithMessageWithReply<HelperToolCommandRequest, HelperToolCommandResponse> = XPCRoute.named("process")
static let commandRoute: XPCRouteWithMessageWithReply<HelperToolCommandRequest, HelperToolCommandResponse> = XPCRoute.named("com.ninxsoft.mist.helper")
.withMessageType(HelperToolCommandRequest.self)
.withReplyType(HelperToolCommandResponse.self)
}