UNPKG

@bkash/bkash

Version:
12 lines (11 loc) 284 B
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) })() }