Versions in this module Expand all Collapse all v0 v0.0.1 May 31, 2024 Changes in this version + func ConvertToJSON(data CSVData, header bool) ([]byte, error) + func ParseCSVToStruct(csvData []byte, separator rune, result interface{}) error + func ParseFileToStruct(filePath string, separator rune, result interface{}) error + type CSVData [][]interface + func (c CSVData) ToJSON(header bool) ([]byte, error) + func Parse(csv []byte, separator rune) (CSVData, error) + func ParseFile(path string, separator rune) (CSVData, error)