test a url if valid and live returning true or false
export const testUri = async(url) => {
const service = 'https://injo3jyxlb.execute-api.us-east-1.amazonaws.com/stg/test'
const headers = { headers: { Authorization: `Bearer ${process.env.TOKEN}` } }
const body = { url }
const { data } = await axios.post(service, body, headers)
return data // true || false
}
