From 9527941501160fa2a399887bd5ea6f7eb6663a46 Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Sun, 5 Nov 2023 11:50:44 -0500 Subject: [PATCH] tar.go: [comment] the Streamer interface is for more than tar Signed-off-by: Vincent Batts --- tar.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tar.go b/tar.go index c3f3093..2bc67af 100644 --- a/tar.go +++ b/tar.go @@ -12,7 +12,7 @@ import ( "github.com/vbatts/go-mtree/pkg/govis" ) -// Streamer creates a file hierarchy out of a tar stream +// Streamer interface creates a file hierarchy out of a stream type Streamer interface { io.ReadCloser Hierarchy() (*DirectoryHierarchy, error)