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

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