From eb7389f15279b9ea7da01905c44cbf7aa20b604c Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Wed, 7 Aug 2024 14:18:52 +1200 Subject: [PATCH] http: make HTTPModule a function --- http.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.d b/http.d index d9d9ad0..b138e22 100644 --- a/http.d +++ b/http.d @@ -39,4 +39,4 @@ class HTTPException : Exception mixin basicExceptionCtors; } -alias HTTPModule = HTTPResponse delegate (HTTPRequest); +alias HTTPModule = HTTPResponse function (HTTPRequest);