(
session: &AgentSession,
prompt: &str,
ctx: &CommandContext,
)
| 21 | } |
| 22 | |
| 23 | pub(super) fn dispatch( |
| 24 | session: &AgentSession, |
| 25 | prompt: &str, |
| 26 | ctx: &CommandContext, |
| 27 | ) -> Option<CommandOutput> { |
| 28 | registry(session).dispatch(prompt, ctx) |
| 29 | } |
no test coverage detected