(options)
| 1 | const fetchJson = require('./fetch-json') |
| 2 | |
| 3 | const createPaymentSession = (options) => { |
| 4 | return fetchJson('/db/payments/payment.sessions', { |
| 5 | method: 'POST', |
| 6 | json: options |
| 7 | }) |
| 8 | } |
| 9 | |
| 10 | module.exports = { |
| 11 | createPaymentSession |
no outgoing calls
no test coverage detected