const urls = { certidao: { local: 'http://localhost:8081/api/', homologacao: 'https://hmg-api-certidao.tc.df.gov.br/api/', producao: 'https://api-certidao.tc.df.gov.br/api/' } }; const reCaptcha = { secret: { local: '6Le2uvsqAAAAACzVWsa_-bXsUEuo2S2M2KxmlfQC', homologacao: '6LcC6vsqAAAAAGD3e14Xe3x69_7EAw6YhnTmVdMS', producao: '6LcC6vsqAAAAAGD3e14Xe3x69_7EAw6YhnTmVdMS' } }; function getUrl(ambiente) { return urls.certidao[ambiente] || null; } function getUrlReCaptcha(ambiente) { return reCaptcha.secret[ambiente] || null; }