This commit is contained in:
Luiz H. R. Silva 2024-07-01 12:55:34 -03:00
parent f2562a37d1
commit 7032eb1329
39 changed files with 442 additions and 790 deletions

View file

@ -1,9 +1,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.urlAutenticacao = void 0;
var urlAutenticacao = function (ambiente) {
return "".concat(ambiente == "producao"
? "https://carro-de-boi.idz.one"
: "http://localhost:5030", "/autenticacao");
};
const urlAutenticacao = (ambiente) => `${ambiente == "producao"
? "https://carro-de-boi.idz.one"
: "http://localhost:5030"}/autenticacao`;
exports.urlAutenticacao = urlAutenticacao;