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

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