···12import "dotenv/config";
13import path from "node:path";
140015const token = process.env.token;
16if (!token) throw new Error("Token required. Please fill in TOKEN in .env");
17console.log("Token Valid!");
···12import "dotenv/config";
13import path from "node:path";
1415+console.log(process.env)
16+17const token = process.env.token;
18if (!token) throw new Error("Token required. Please fill in TOKEN in .env");
19console.log("Token Valid!");