9 lines
126 B
JavaScript
9 lines
126 B
JavaScript
import dotenv from 'dotenv';
|
|
|
|
dotenv.config();
|
|
|
|
function main() {
|
|
console.log(`SECRET=${process.env.SECRET}`);
|
|
}
|
|
|
|
main();
|