Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 257 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 257 Bytes

Record Emitter

Usage

file := "/path/to/file.csv"
e := record_emitter.NewEmitter(file)
receiver := e.Start()

for row := range receiver {
   // mess with record
}

// Alternatively

for row := range e.Start() {
   // mess with record
}