(fn func(ReportTaskArgs) error)
| 97 | } |
| 98 | |
| 99 | func WithTaskReporter(fn func(ReportTaskArgs) error) func(*Deps) { |
| 100 | return func(d *Deps) { |
| 101 | d.report = fn |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | // WithAgentConnFunc overrides how workspace tools open logical connections to |
| 106 | // workspace agents. |
no outgoing calls