Files
Moonlight/Moonlight.ApiServer/Http/Middleware/AuthenticationMiddleware.cs
2024-09-30 17:52:14 +02:00

16 lines
304 B
C#

namespace Moonlight.ApiServer.Http.Middleware;
public class AuthenticationMiddleware
{
private readonly RequestDelegate Next;
public AuthenticationMiddleware(RequestDelegate next)
{
Next = next;
}
public async Task InvokeAsync(HttpContext context)
{
}
}