Files

9 lines
141 B
JavaScript
Raw Permalink Normal View History

2020-09-16 18:03:09 -05:00
const get = require('./get');
const post = require('./post');
const put = require('./put');
module.exports = {
get,
post,
2020-09-21 14:48:10 -05:00
put
2020-09-16 18:03:09 -05:00
};