aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zsig/zsig.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/zsig/zsig.go b/zsig/zsig.go
index a254e05..da23806 100644
--- a/zsig/zsig.go
+++ b/zsig/zsig.go
@@ -122,3 +122,13 @@ func (z *Reader) readString() (string, error) {
}
return s, nil
}
+
+type Writer struct {
+ Header
+ *bufio.Writer
+}
+
+// TODO
+func NewWriter(w io.Writer) (*Writer, error) {
+ return nil, nil
+}