package
Version:
v0.0.0-...-30bd09b
Opens a new window with list of versions in this module.
Published: May 1, 2016
License: MIT
Opens a new window with license information.
Imports: 7
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
App represents a flow program which has been loaded and
type checked.
Load loads the components of a flow app and
reports type errors found in the graph.
prog, _ := parser.ParseReader(strings.NewReader(`
entry: start
components:
start: func(s string) {}
`))
app, _ := Load(prog)
fmt.Println(app.Components[0].Inputs)
Output:
(s string)
Component returns the component within the App with the given ID
Component is a single process node within a flow program
Source Files
¶
Click to show internal directories.
Click to hide internal directories.