(commandPath string, id string, properties map[string]string)
| 52 | } |
| 53 | |
| 54 | func (t *Tracker) TrackCommandRun(commandPath string, id string, properties map[string]string) { |
| 55 | eventName := generateRunEventName(commandPath) |
| 56 | t.track(eventName, id, properties) |
| 57 | } |
| 58 | |
| 59 | func (t *Tracker) Wait(ctx context.Context) { |
| 60 | ch := make(chan struct{}) |
no test coverage detected