Initial version

This commit is contained in:
2026-06-09 22:27:38 +02:00
parent 5afbf3b01c
commit 5ff2ac8941
57 changed files with 2343 additions and 98 deletions
+19
View File
@@ -0,0 +1,19 @@
using Grpc.Core;
using ProtoBuf.Grpc.Client;
using EonaCat.gRPC.Proto;
namespace EonaCat.gRPC.Client;
public class AuthService
{
public static async Task Authenticate(CallInvoker invoker)
{
var authenticationClient = invoker.CreateGrpcService<IAuthenticationService>();
var authenticationResponse = await authenticationClient.Authenticate(new AuthenticationRequest
{
UserName = "admin",
Password = "admin"
});
Console.WriteLine($"Received Authentication Response - \nToken: {authenticationResponse.AccessToken}\nExpires In: {authenticationResponse.ExpiresIn}");
}
}