(session_id: &str)
| 24 | } |
| 25 | |
| 26 | fn session_start_event(session_id: &str) -> TurnEvent { |
| 27 | TurnEvent::new(session_id, HookType::SessionStart) |
| 28 | } |
| 29 | |
| 30 | fn turn_start_event(session_id: &str, prompt: &str) -> TurnEvent { |
| 31 | TurnEvent::new(session_id, HookType::TurnStart).with_prompt(prompt) |
no outgoing calls
no test coverage detected