|
using System;
|
|
using Grpc.Net.Client;
|
|
|
|
namespace BlueWest.GrpcClient
|
|
{
|
|
class Program
|
|
{
|
|
static void Main()
|
|
{
|
|
var channel = GrpcChannel.ForAddress("https://localhost:5001");
|
|
//var client = new Greet.GreeterClient(channel);
|
|
Console.WriteLine("Hello, World!");
|
|
}
|
|
|
|
}
|
|
}
|