Mist/Shared/XPCRoute+Extension.swift

15 lines
396 B
Swift
Raw Normal View History

2022-07-01 02:44:06 -04:00
//
// XPCRoute+Extension.swift
// Mist
//
// Created by Nindi Gill on 21/6/2022.
//
import SecureXPC
extension XPCRoute {
2022-09-21 06:26:09 -04:00
static let commandRoute: XPCRouteWithMessageWithReply<HelperToolCommandRequest, HelperToolCommandResponse> = XPCRoute.named("com.ninxsoft.mist.helper")
2022-07-01 02:44:06 -04:00
.withMessageType(HelperToolCommandRequest.self)
.withReplyType(HelperToolCommandResponse.self)
}