X-Git-Url: http://www.git.cypherpunks.ru/?p=gorecfile.git;a=blobdiff_plain;f=r.go;h=2b917ae554c7ca20fc7cf43dfae462440de41063;hp=9a4420d7b6968f8649c44d9ec3481227adf6896c;hb=29baa531948de1a2478a47d04bbab14012dc4c15;hpb=e3bf526c33e545694fafdf4e67ad7a92183d52c3 diff --git a/r.go b/r.go index 9a4420d..2b917ae 100644 --- 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) {