(file, options = {})
| 4 | cloudinary.config(config.get("cloudinary")); |
| 5 | |
| 6 | const upload = async (file, options = {}) => { |
| 7 | const response = await cloudinary.uploader.upload(file, options); |
| 8 | return response; |
| 9 | }; |
| 10 | |
| 11 | module.exports = { |
| 12 | upload, |
no outgoing calls
no test coverage detected