mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 10:07:08 +00:00
When a client makes a request for `/` (the root of the API), the OpenAPI description is served in an appropriate format according to the `Accept` request header, as follows: Accept: text/html => HTML version Accept: application/json => JSON version Accept: * => YAML version
5 lines
45 B
JavaScript
5 lines
45 B
JavaScript
|
|
module.exports = {
|
|
get: require('./get')
|
|
}
|