From b260ddfe8c783a44f1cba5bc9778480137c99907 Mon Sep 17 00:00:00 2001 From: andrewlalis Date: Tue, 14 Jan 2025 17:57:01 -0500 Subject: [PATCH] Added public imports for packages. --- source/handy_http_transport/http1/package.d | 1 + source/handy_http_transport/package.d | 3 +++ 2 files changed, 4 insertions(+) diff --git a/source/handy_http_transport/http1/package.d b/source/handy_http_transport/http1/package.d index d90d068..728f598 100644 --- a/source/handy_http_transport/http1/package.d +++ b/source/handy_http_transport/http1/package.d @@ -3,3 +3,4 @@ */ module handy_http_transport.http1; +public import handy_http_transport.http1.transport; diff --git a/source/handy_http_transport/package.d b/source/handy_http_transport/package.d index 7be92a1..d4737bd 100644 --- a/source/handy_http_transport/package.d +++ b/source/handy_http_transport/package.d @@ -2,3 +2,6 @@ module handy_http_transport; public import handy_http_transport.http1; public import handy_http_transport.http2; + +public import handy_http_transport.interfaces; +public import handy_http_transport.response_output_stream;