Versions in this module Expand all Collapse all v0 v0.0.1 May 15, 2022 Changes in this version + type CSVHandler struct + func (c *CSVHandler) Name() string + func (c *CSVHandler) Parse(reader io.Reader) (interface{}, error) + func (c *CSVHandler) SetOption(name string, value interface{}) error + type Handler interface + Name func() string + Parse func(reader io.Reader) (interface{}, error) + SetOption func(name string, value interface{}) error + func SelectHandler(name string) (Handler, error) + type JSONHandler struct + func (j *JSONHandler) Name() string + func (j *JSONHandler) Parse(reader io.Reader) (interface{}, error) + func (j *JSONHandler) SetOption(name string, value interface{}) error + type YAMLHandler struct + func (y *YAMLHandler) Name() string + func (y *YAMLHandler) Parse(reader io.Reader) (interface{}, error) + func (y *YAMLHandler) SetOption(name string, value interface{}) error