({ courseID }, options)
| 10 | |
| 11 | module.exports = { |
| 12 | get ({ courseID }, options) { |
| 13 | if (options == null) { options = {} } |
| 14 | return fetchJson(`/db/course/${courseID}`, options) |
| 15 | }, |
| 16 | |
| 17 | getAll (options, other) { |
| 18 | if (options == null) { options = {} } |
nothing calls this directly
no outgoing calls
no test coverage detected