Open
Description
Overview
Implement the capability to execute DAGs directly from Go code.
Example Usage:
err := dagu.Start("someDAG", dagu.Params("FOO=BAR"))
Implementation
Expose the Start
function as follows:
package dagu
// Start starts DAG execution with specified options
function Start(dagName string, opts ...options)
Additional Context