| 28 | type EventLogBuilder func() (EventLog, error) |
| 29 | |
| 30 | type defaultExecutor struct { |
| 31 | execID string |
| 32 | eventLog EventLog |
| 33 | registry map[string]agent.Agent |
| 34 | } |
| 35 | |
| 36 | func newExecID(parent, child string) string { |
| 37 | if parent == "" { |
nothing calls this directly
no outgoing calls
no test coverage detected