Hi folks, is there any way to integrate gRPC with Ktor
without using kotlinx.rpc? I'd like to do some proxying and re-routing, ideally using Ktor, so just defining services isn't enough - I need to be able to receive a gRPC request and route it to services (or another gRPC call) myself, using something like
ServerInterceptor
. Lacking that, is the source for kotlinx.rpc's gRPC integration available anywhere so I could see how it was done?