diff --git a/src/config/anon_credits.txt b/config/anon_credits.txt similarity index 100% rename from src/config/anon_credits.txt rename to config/anon_credits.txt diff --git a/src/config/mod.ts b/src/config/mod.ts index 3b49ead..0d84035 100644 --- a/src/config/mod.ts +++ b/src/config/mod.ts @@ -11,4 +11,4 @@ export const CHANNEL_ID = Deno.env.get("CHANNEL_ID") ?? (() => { throw new Error export const GROUP_ID = Deno.env.get("GROUP_ID") ?? (() => { throw new Error("GROUP_ID is unset") })(); export const COMMUNITY_GROUP_ID = Deno.env.get("COMMUNITY_GROUP_ID") ?? (() => { throw new Error("COMMUNITY_GROUP_ID is unset") })(); -export const ANON_CREDITS = Deno.readTextFileSync("./src/config/anon_credits.txt").split("\n"); \ No newline at end of file +export const ANON_CREDITS = Deno.readTextFileSync("./config/anon_credits.txt").split("\n"); \ No newline at end of file