blob: 26b3f4aa169a08a95d8b9ddc1019b20b9ad31676 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace WhatApi.Middleware;
public class AuthorizationMiddleware(RequestDelegate next, Database db)
{
public async Task InvokeAsync(HttpContext context) {
await next(context);
}
}
|