isolamento de pacote
This commit is contained in:
commit
f34b66cbe4
96 changed files with 2285 additions and 0 deletions
21
dist-import/lista-prefeituras.js
Normal file
21
dist-import/lista-prefeituras.js
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
import cFetch from "cross-fetch";
|
||||
import { respostaComuns } from "p-respostas";
|
||||
export const tx_listar_prefeituras = "listar_prefeituras";
|
||||
export const listarPrefeituras = async ({ url_api_autenticacao, }) => {
|
||||
const url = `${url_api_autenticacao}/api/${tx_listar_prefeituras}`;
|
||||
return cFetch(url)
|
||||
.then(async (a) => {
|
||||
const texto = await a.text();
|
||||
try {
|
||||
const res = JSON.parse(texto);
|
||||
return res;
|
||||
}
|
||||
catch (error) {
|
||||
return respostaComuns.erro(`Erro ao listar cidades: ${error.message}`, [
|
||||
texto,
|
||||
error,
|
||||
]);
|
||||
}
|
||||
})
|
||||
.catch((error) => respostaComuns.erro(`Erro ao listar cidades: ${error.message}`, [error]));
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue