v0.1.1-beta
[Fix] v0.1.1-beta
Fix/Handle execution for no initial/entry step [#4]
In v0.1.0-beta if there are no steps (no initial or subsequent steps) then the Execute() functions panics and exits. To Fix this adding a simple check to see if (initial) steps are not empty. If it is then no error is returned or no panics are caused.
if len(steps) == 0 {
return nil, nil
}
Commit: 9624cf3
What's Changed
Full Changelog: v0.1.0-beta...v0.1.1-beta