#!/usr/bin/env dotnet-script #r "nuget: Grpc.Net.Client, 2.59.0" #r "nuget: Google.Protobuf, 3.25.1" using Grpc.Net.Client; using Grpc.Core; // Simple gRPC test var channel = GrpcChannel.ForAddress("http://localhost:50051"); Console.WriteLine("Calling ReadActionMappings..."); try { // We need to use reflection or generate the client from proto // For now, just trigger via curl Console.WriteLine("Test script - use curl instead"); } catch (Exception ex) { Console.WriteLine($"Error: {ex.Message}"); }