Mist/Shared/XPCRoute+Extension.swift
2024-10-05 14:05:24 +10:00

15 lines
422 B
Swift

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