summaryrefslogtreecommitdiffstats
path: root/api/WhatApi/Middleware/AuthenticationMiddleware.cs
blob: a691d3cae1a853ccad5e83c68cc1997c6015f444 (plain) (blame)
1
2
3
4
5
6
7
8
namespace WhatApi.Middleware;

public class AuthenticationMiddleware(RequestDelegate next)
{
    public async Task InvokeAsync(HttpContext context) {
        await next(context);
    }
}