()
| 28 | private constructor(private readonly token: string) { } |
| 29 | |
| 30 | private authHeaders(): Record<string, string> { |
| 31 | return buildHubRequestHeaders({ |
| 32 | Authorization: `Bearer ${this.token}`, |
| 33 | 'Content-Type': 'application/json' |
| 34 | }) |
| 35 | } |
| 36 | |
| 37 | async getOrCreateSession(opts: { |
| 38 | tag: string |
no test coverage detected