RustamRu c0883fc2bc
Some checks failed
platform/multy-stub/pipeline/pr-master There was a failure building this commit
add get token, fix prompt
2025-03-03 19:49:11 +03:00

9 lines
241 B
JavaScript

const getGigaToken = async () => {
const response = await fetch('https://admin.bro-js.ru/api/config/v1/dev')
const data = await response.json()
return data.features['dry-wash-bh'].GIGA_TOKEN.value
}
module.exports = {
getGigaToken
}