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