const axios = require('axios');
exports.printMsg = function() {
console.log("This is a message from the demo package");
;(async () => {
const response = await axios({
url: 'https://dog.ceo/api/breeds/list/all',
method: 'get'
});
console.log(response)
})()
}