Mist/Shared/XPCRoute+Extension.swift
2022-09-21 20:26:09 +10:00

15 lines
414 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("com.ninxsoft.mist.helper")
.withMessageType(HelperToolCommandRequest.self)
.withReplyType(HelperToolCommandResponse.self)
}