const api = {} // api.url = 'http://localhost:3000' api.url = 'http://venus.acatlan.unam.mx:3010' api.isAuth = function () { if (window.localStorage.pcpumaT && window.localStorage.pcpumaU) { return true } return false } api.exit = function () { window.localStorage.token = null window.localStorage.usuario = null } export default api