aboutsummaryrefslogtreecommitdiff
path: root/packages/db/src/core/tokens.ts
diff options
context:
space:
mode:
authorGravatar Arsh <matthewp@users.noreply.github.com> 2024-03-14 18:29:56 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-03-14 18:29:56 +0000
commitcdf1ac1292ee97751ce82cfe571ce7e162376ff3 (patch)
tree5377695561d2984558dcddbe97f0ea72f9501ff7 /packages/db/src/core/tokens.ts
parent238f047b9d1ebc407f53d61ee61574b380a76ac9 (diff)
downloadastro-cdf1ac1292ee97751ce82cfe571ce7e162376ff3.tar.gz
astro-cdf1ac1292ee97751ce82cfe571ce7e162376ff3.tar.zst
astro-cdf1ac1292ee97751ce82cfe571ce7e162376ff3.zip
[ci] format
Diffstat (limited to 'packages/db/src/core/tokens.ts')
-rw-r--r--packages/db/src/core/tokens.ts2
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'));