(options)
| 5 | const getPodcast = (podcastId) => fetchJson(`/db/podcast/${podcastId}`) |
| 6 | |
| 7 | const podcastContact = (options) => { |
| 8 | return fetchJson('/db/podcast/contact', { |
| 9 | method: 'POST', |
| 10 | json: options |
| 11 | }) |
| 12 | } |
| 13 | |
| 14 | module.exports = { |
| 15 | getPodcasts, |
nothing calls this directly
no outgoing calls
no test coverage detected