CodeLiturgy.Dashboard/BlueWest.GrpcClient/Program.cs

17 lines
338 B
C#
Raw Normal View History

2021-12-10 03:04:48 +03:00
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!");
}
}
}