UNPKG

africastalking

Version:
12 lines (10 loc) 267 B
function application ({ createAxiosInstance, endpoints, username }) { return { getApplicationData: () => { return createAxiosInstance().get(endpoints.GET_APPLICATION_DATA, { params: { username } }) } } }; module.exports = application