(options)
| 2 | export default class RESTBaseAPI { |
| 3 | |
| 4 | constructor(options) { |
| 5 | this.options = options |
| 6 | this.resource = options.resource || options.name |
| 7 | } |
| 8 | |
| 9 | getHost() { |
| 10 | return '/' |
nothing calls this directly
no outgoing calls
no test coverage detected