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

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