WIP: Add Keycloak jwt bearer

This commit is contained in:
2025-08-03 12:19:29 +02:00
parent 164aa79dae
commit c981b24c60
8 changed files with 71 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,8 @@
namespace PresentPortal.Shared;
public static class ServiceNames
{
public const string Api = "Api";
public const string Keycloak = "Keycloak";
}