mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 10:57:07 +00:00
The reason for refactoring was to accommodate Multiseis / client sequence exports, which will be served by this endpoint via a specific Content-Type. In the process, the cache has been fixed and redesigned. Related to #12.
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
|
|
module.exports = {
|
|
list: require('./list'),
|
|
get: require('./get'),
|
|
post: require('./post'),
|
|
put: require('./put'),
|
|
delete: require('./delete'),
|
|
cache: require('./cache')
|
|
}
|