mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
12 lines
169 B
TypeScript
12 lines
169 B
TypeScript
const secretData = JSON.parse(process.env.SECRETS || '{}');
|
|
|
|
const get = (id: string) => {
|
|
return secretData[id];
|
|
};
|
|
|
|
const secrets = {
|
|
get,
|
|
};
|
|
|
|
export { secrets };
|