aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2017-08-05 22:31:58 +0200
committerDimitri Sokolyuk <demon@dim13.org>2017-08-05 22:31:58 +0200
commit0089fedd654932a851aa9f594bbb7dc82fe9c2cd (patch)
tree1e3f962bb7ebfc24e0649f7594ada6bb30e28f8b
parent4865ac3532b1d54cfe99209e5e430182313cc9a9 (diff)
Writer TODO
-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
+}