(method, path, options = {})
| 2056 | const config = getLuckmailSessionConfig(state); |
| 2057 | const apiKey = ensureLuckmailApiKey(state); |
| 2058 | const request = (method, path, options = {}) => requestLuckmail(method, path, { |
| 2059 | baseUrl: config.baseUrl, |
| 2060 | apiKey, |
| 2061 | ...options, |
| 2062 | }); |
| 2063 | |
| 2064 | return { |
| 2065 | user: { |
no test coverage detected