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