Versions in this module Expand all Collapse all v0 v0.2.0 Sep 9, 2018 Changes in this version + func ReadCSV(reader io.Reader, conf CSVConfig) (map[string]interface{}, []string, error) + func UnmarshalJSON(r io.Reader) (map[string]interface{}, error) + type CSVConfig struct + Delimiter byte + EmptyNull bool + EnumVals map[string][]string + IgnoreEmptyLines bool + Types map[string]types.DataType + type JSONColumns map[string]json.RawMessage + type JSONRecords []map[string]interface v0.1.0 May 23, 2018 Changes in this version + func ReadCsv(reader io.Reader, conf CsvConfig) (map[string]interface{}, []string, error) + func UnmarshalJson(r io.Reader) (map[string]interface{}, error) + type CsvConfig struct + Delimiter byte + EmptyNull bool + EnumVals map[string][]string + IgnoreEmptyLines bool + Types map[string]types.DataType + type JsonColumns map[string]json.RawMessage + type JsonRecords []map[string]interface