mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
* Outdate template * don't use `.env.example` * deno fmt Co-authored-by: meister03 <meisterpi@gmail.com> Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com> Co-authored-by: LTS20050703 <lts20050703@gmail.com>
6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
import { dotEnvConfig } from "./deps.ts";
|
|
|
|
dotEnvConfig({ export: true });
|
|
export const BOT_TOKEN = Deno.env.get("BOT_TOKEN") || "";
|
|
export const BOT_ID = BigInt(atob(BOT_TOKEN.split(".")[0]));
|