mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-31 16:00:07 +00:00
* fix: bot pkg test * Fix code style issues with ESLint * Update Guild.ts * Update Guild.ts * Fix code style issues with ESLint Co-authored-by: Lint Action <lint-action@samuelmeuli.com> Co-authored-by: Jonathan Ho <heiheiho000@gmail.com>
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
import { dotEnvConfig } from './deps.ts.js';
|
|
|
|
dotEnvConfig({ export: true });
|
|
export const BOT_TOKEN = process.env.BOT_TOKEN || "";
|
|
export const BOT_ID = BigInt(atob(BOT_TOKEN.split(".")[0]));
|