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