mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-04-05 16:36:52 +00:00
claude oauth support
This commit is contained in:
@@ -37,7 +37,11 @@ export namespace App {
|
||||
x ? path.dirname(x) : undefined,
|
||||
)
|
||||
|
||||
const data = path.join(Global.Path.data, git ?? "global")
|
||||
const data = path.join(
|
||||
Global.Path.data,
|
||||
"project",
|
||||
git ? git.split(path.sep).join("-") : "global",
|
||||
)
|
||||
const stateFile = Bun.file(path.join(data, APP_JSON))
|
||||
const state = (await stateFile.json().catch(() => ({}))) as {
|
||||
initialized: number
|
||||
|
||||
Reference in New Issue
Block a user