import Foundation import SecretAgentKit //@objc public protocol RemoteAgentInputParserProtocol { // // func parse(data: Data, with reply: (SSHAgent.Request?, (any Error)?) -> Void) // //} // //class AgentInputParser: NSObject, RemoteAgentInputParserProtocol { // // /// This implements the example protocol. Replace the body of this class with the implementation of this service's protocol. // @objc func performCalculation(firstNumber: Int, secondNumber: Int, with reply: @escaping (Int) -> Void) { // let response = firstNumber + secondNumber // reply(response) // } //}