// // XPCRoute+Extension.swift // Mist // // Created by Nindi Gill on 21/6/2022. // import Foundation import SecureXPC extension XPCRoute { static let commandRoute: XPCRouteWithMessageWithReply = XPCRoute.named("process") .withMessageType(HelperToolCommandRequest.self) .withReplyType(HelperToolCommandResponse.self) }