diff options
Diffstat (limited to 'packages/db/src/core/tokens.ts')
-rw-r--r-- | packages/db/src/core/tokens.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/db/src/core/tokens.ts b/packages/db/src/core/tokens.ts index 88bb26ec5..379a3f681 100644 --- a/packages/db/src/core/tokens.ts +++ b/packages/db/src/core/tokens.ts @@ -4,9 +4,9 @@ import { join } from 'node:path'; import { pathToFileURL } from 'node:url'; import { green } from 'kleur/colors'; import ora from 'ora'; +import { safeFetch } from '../runtime/utils.js'; import { MISSING_PROJECT_ID_ERROR, MISSING_SESSION_ID_ERROR } from './errors.js'; import { getAstroStudioEnv, getAstroStudioUrl } from './utils.js'; -import { safeFetch } from '../runtime/utils.js'; export const SESSION_LOGIN_FILE = pathToFileURL(join(homedir(), '.astro', 'session-token')); export const PROJECT_ID_FILE = pathToFileURL(join(process.cwd(), '.astro', 'link')); |