Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix/Handle execution for no initial/entry step [#4]
Merge pull request #4 from TanmoySG/fix-no-initial-step In v0.1-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 }
- Loading branch information