I am using grpc to communicate with the server. I create connection using
let channel = ClientConnection
.secure (group: MultiThreadedEventLoopGroup (numberOfThreads: 10))
.connect (host: "testHost.com", port: 443)
But with the new version, the connection was moved to https://testHost.com/api, how do I add the path = api to connect to the server?
This path will be present in the protobuffs that are converted to swift lang