CSVWriter CSV输出写入器
| 11 | |
| 12 | // CSVWriter CSV输出写入器 |
| 13 | type CSVWriter struct { |
| 14 | file *os.File |
| 15 | writer *csv.Writer |
| 16 | } |
| 17 | |
| 18 | // NewCSVWriter 创建新的CSV写入器 |
| 19 | func NewCSVWriter(filename string) (*CSVWriter, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected