From f0ab9ff182f1318db7f3da226a4f96c24ce868fb Mon Sep 17 00:00:00 2001 From: "Lau, Luke" Date: Tue, 25 Feb 2025 09:57:02 -0500 Subject: [PATCH] adding description for MyReader struct --- api/api_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/api_test.go b/api/api_test.go index 94247b7..e8e5720 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -35,6 +35,8 @@ import ( type stubTypeWithMetaData struct{} +// MyReader is an io.ReadCloser implementation for writing +// the body of an http request type MyReader struct { reader io.Reader }