Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Column ¶
type Column struct {
// Name of the column
Name string `yaml:"name"`
// Type of the column will be generated
Type string `yaml:"type"`
// Option
Option []string `yaml:"options,flow"`
// Kwargs extra configs
Kwargs map[string]interface{} `yaml:"kwargs"`
}
Column struct to keep config to generate column
type Documents ¶
type Documents struct {
// Name of the output file
Name string `yaml:"name"`
// Column configs should be generated
Columns []Column `yaml:"columns"`
// WithHeader variable to generate headers
WithHeader bool `yaml:"with_header"`
// Count is total row
Count int `yaml:"rows"`
}
Documents struct to keep config to generate document
Click to show internal directories.
Click to hide internal directories.