mirror of
https://github.com/ninxsoft/Mist.git
synced 2025-05-09 14:01:55 -04:00
15 lines
414 B
Swift
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)
|
|
}
|