mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
18 lines
375 B
JavaScript
18 lines
375 B
JavaScript
'use strict';
|
|
|
|
function getApiKeys() {
|
|
let apiKeys = ['b29eb8b9-9bcd-4e6e-bb4f-d244ada12736'];
|
|
|
|
if (process.env.RDIO_APIKEYS) {
|
|
try {
|
|
apiKeys = JSON.parse(process.env.RDIO_APIKEYS);
|
|
} catch (err) {
|
|
console.log('ERROR: Invalid JSON format in RDIO_APIKEYS.');
|
|
}
|
|
}
|
|
|
|
return apiKeys;
|
|
}
|
|
|
|
module.exports = getApiKeys;
|