]> Cypherpunks.ru repositories - gorecfile.git/blobdiff - r.go
Writer
[gorecfile.git] / r.go
diff --git a/r.go b/r.go
index 9a4420d7b6968f8649c44d9ec3481227adf6896c..2b917ae554c7ca20fc7cf43dfae462440de41063 100644 (file)
--- a/r.go
+++ b/r.go
@@ -38,11 +38,6 @@ func NewReader(r io.Reader) *Reader {
        return &Reader{bufio.NewScanner(r)}
 }
 
-type Field struct {
-       Name  string
-       Value string
-}
-
 // Get next record. Each record is just a collection of fields. io.EOF
 // is returned if there is nothing to read more.
 func (r *Reader) Next() ([]Field, error) {