Versions in this module Expand all Collapse all v0 v0.1.5 Oct 28, 2025 v0.1.4 Oct 22, 2025 Changes in this version + type CSVConfig struct + CloudDefault string + Delimiter rune + HasHeader bool + RequiredFields []string + func DefaultCSVConfig() CSVConfig + type CSVRecord struct + Account string + Cloud string + Extra map[string]string + InstanceID string + Region string + func (r *CSVRecord) ToInstance() *cloud.Instance + type ParseError struct + Column string + Err error + Line int + Message string + func (pe *ParseError) Error() string + func (pe *ParseError) Unwrap() error + type Parser struct + func NewParser(config CSVConfig) *Parser + func (p *Parser) ParseFile(filePath string) ([]*cloud.Instance, error) + func (p *Parser) ParseString(content string) ([]*cloud.Instance, error)