GRPC::CallInfo
CallInfo carries metadata about an in-flight RPC call passed to interceptors. Interceptors should use this instead of parsing raw strings.
Example: def call(info : GRPC::CallInfo, request, ctx, next_call) STDERR.puts "→ #{info.method_path} (#{info.kind})" next_call.call(info.method_path, request, ctx) end