()
| 27 | } |
| 28 | |
| 29 | export function getAuthHeaders(): Record<string, string> { |
| 30 | const token = resolveToken() |
| 31 | if (!token) return {} |
| 32 | return { Authorization: `Bearer ${token}` } |
| 33 | } |
| 34 | |
| 35 | export function getBaseUrl(): string { |
| 36 | return _baseUrl |
no test coverage detected