(token: string)
| 57 | } |
| 58 | |
| 59 | function authHeaders(token: string): Record<string, string> { |
| 60 | return { |
| 61 | 'Authorization': `Bearer ${token}`, |
| 62 | 'Content-Type': 'application/json', |
| 63 | 'Accept': 'application/json', |
| 64 | }; |
| 65 | } |
| 66 | |
| 67 | // ─── ~/.netrc credential storage ───────────────────────── |
| 68 | // |
no outgoing calls
no test coverage detected