Mist/Shared/XPCRoute+Extension.swift
2022-07-01 16:44:06 +10:00

15 lines
397 B
Swift

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