Write the values into csv
(values []string)
| 75 | |
| 76 | // Write the values into csv |
| 77 | func (ci *CsvFileWriter) Write(values []string) { |
| 78 | err := ci.writer.Write(values) |
| 79 | if err != nil { |
| 80 | panic(err) |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | // Flush the wrote data into file physically |
| 85 | func (ci *CsvFileWriter) Flush() { |
no outgoing calls