multy-stub/server/routers/dry-wash/get-token.js

9 lines
241 B
JavaScript
Raw Normal View History

2025-03-03 19:49:11 +03:00
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
}