(text: string)
| 53 | } |
| 54 | |
| 55 | function userMessage(text: string): Record<string, unknown> { |
| 56 | return { |
| 57 | timestamp: new Date().toISOString(), |
| 58 | type: 'event_msg', |
| 59 | payload: { type: 'user_message', message: text }, |
| 60 | }; |
| 61 | } |
| 62 | |
| 63 | function runImport(sessionPath: string): { stdout: string; stderr: string; status: number } { |
| 64 | const env: Record<string, string> = {}; |
no outgoing calls
no test coverage detected