From 52b87e740d098efdbd84d60fa995acf6ee495457 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Mon, 4 Aug 2025 17:52:34 +0200 Subject: [PATCH] fix: wrong cache path --- src/account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/account.ts b/src/account.ts index a590d33..d849a03 100644 --- a/src/account.ts +++ b/src/account.ts @@ -1,4 +1,4 @@ -const ACCOUNTS_FILE = "./accounts.json"; +const ACCOUNTS_FILE = "./.cache/accounts.json"; export const initAccounts = async (): Promise => { if (!(await Bun.file(ACCOUNTS_FILE).exists())) {