Skip to content

First release!

Latest
Compare
Choose a tag to compare
@thepatrik thepatrik released this 11 Aug 20:43
· 3 commits to master since this release
Add FuncFlow support

Add support for running a sequence of funcs as specified
by the FuncFlow interface: PreRun->Run->PostRun

* PreRun(context.Context) ([]interface{}, error): runs prior to Run
* Run(context.Context, []interface{}) ([]interface{}, error): is
the main run func.
* PostRun(context.Context, []interface{}) error: runs after Run