(ctx context.Context, sessionID, label string)
| 120 | } |
| 121 | |
| 122 | func (h *hookDispatcher) NotifyUserInput(ctx context.Context, sessionID, label string) { |
| 123 | h.r.executeOnUserInputHooks(ctx, sessionID, label) |
| 124 | } |
| 125 | |
| 126 | func (h *hookDispatcher) NotifyApprovalDecision(ctx context.Context, sess *session.Session, a *agent.Agent, tc tools.ToolCall, decision, source string) { |
| 127 | h.r.executeOnToolApprovalDecisionHooks(ctx, sess, a, tc, decision, source) |
nothing calls this directly
no test coverage detected