namespace PipelineFramework.Abstractions; public interface IPipelineMiddleware { Task InvokeAsync(TContext context, Func next); }