namespace DTLib.Web.Routes; public class DelegateRouteHandler(Func> routeHandler) : IRouteHandler { public Task HandleRequest(HttpListenerContext ctx) => routeHandler(ctx); }