From 38294bcc568a084db71e7f8b3618032886963b4c Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Sat, 29 Jun 2019 10:40:43 +0200 Subject: [PATCH] src/client.rs: make module put_to_stream public --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index 89b8e153..9ebdbc22 100644 --- a/src/client.rs +++ b/src/client.rs @@ -3,7 +3,7 @@ //! This library implements the client side to access the backups //! server using https. -mod pipe_to_stream; +pub mod pipe_to_stream; mod merge_known_chunks; mod http_client;