Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CollectionConfig ¶
type CollectionConfig struct {
Name string `yaml:"name"`
Help string `yaml:"help"`
Readme string `yaml:"readme"`
Runnables []string `yaml:"runnables"`
Environments map[string]string `yaml:"environments"`
}
func LoadCollectionConfig ¶
func LoadCollectionConfig(path string) (*CollectionConfig, error)
type RunnableConfig ¶
type RunnableConfig struct {
Name string `yaml:"name"`
Help string `yaml:"help"`
Readme string `yaml:"readme"`
Run string `yaml:"run"`
Before string `yaml:"before"`
After string `yaml:"after"`
Environments map[string]string `yaml:"environments"`
}
func LoadRunnableConfig ¶
func LoadRunnableConfig(path string) (*RunnableConfig, error)
Click to show internal directories.
Click to hide internal directories.