(options)
| 1 | const fetchJson = require('./fetch-json') |
| 2 | |
| 3 | const postExam = async (options) => { |
| 4 | return fetchJson('/db/exam', { |
| 5 | method: 'POST', |
| 6 | json: options, |
| 7 | }) |
| 8 | } |
| 9 | |
| 10 | const getExamById = async (id) => { |
| 11 | return fetchJson(`/db/exams/${id}`) |