(body: SessionCreate)
| 209 | |
| 210 | // ── HTTP convenience surface ──────────────────────────────────────────── |
| 211 | createSession(body: SessionCreate): Promise<Session> { |
| 212 | return this.http.createSession(body); |
| 213 | } |
| 214 | getSession(sid: string): Promise<Session> { |
| 215 | return this.http.getSession(sid); |
| 216 | } |
no test coverage detected