(sessionId: string)
| 27 | * Get the file path for a session. |
| 28 | */ |
| 29 | export function sessionPath(sessionId: string): string { |
| 30 | return path.join("/tmp", `design-session-${sessionId}.json`); |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Create a new session after initial generation. |
no outgoing calls
no test coverage detected