Documentation ¶
Overview ¶
Package yaml is a simple frontend that reads yaml. Mostly used to quickly test the whole pipeline instead of requiring a custom language/parser.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewYamlFrontend ¶
Types ¶
type YamlCapture ¶
type YamlGochart ¶
type YamlGochart struct { Name string `yaml:"name"` Triggers []*YamlTrigger `yaml:"triggers"` States []*YamlState `yaml:"states"` Transitions []*YamlTransition `yaml:"transitions"` }
type YamlOption ¶
type YamlState ¶
type YamlState struct { Name string `yaml:"name"` Parent string `yaml:"parent"` Options []*YamlOption `yaml:"options"` EnterReactions []string `yaml:"enter_reactions"` ExitReactions []string `yaml:"exit_reactions"` Captures []*YamlCapture `yaml:"captures"` }
type YamlTransition ¶
type YamlTrigger ¶
Click to show internal directories.
Click to hide internal directories.