mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:27:07 +00:00
Used to download files. It relies on `imports.paths` being set appropriately in `etc/config.yaml` to indicate which parts of the filesystem are accessible to users via Dougal.
8 lines
125 B
JavaScript
8 lines
125 B
JavaScript
|
|
module.exports = {
|
|
get: require('./get'),
|
|
post: require('./post'),
|
|
put: require('./put'),
|
|
delete: require('./delete')
|
|
}
|