(parent, child string)
| 34 | } |
| 35 | |
| 36 | func newExecID(parent, child string) string { |
| 37 | if parent == "" { |
| 38 | return child |
| 39 | } |
| 40 | return parent + "-" + child |
| 41 | } |
| 42 | |
| 43 | func DefaultExecutor(eventLog EventLog, registry map[string]agent.Agent) agent.Executor { |
| 44 | return &defaultExecutor{ |