diff options
author | 2024-03-07 18:39:47 +0000 | |
---|---|---|
committer | 2024-03-07 18:39:47 +0000 | |
commit | e086a9f8c8351f22b7d956551e308a62b3e0564e (patch) | |
tree | f58a82619c97429a6c2ea80c80d4d9fe0e5103ac /packages/db/src/runtime/index.ts | |
parent | 06fe94e29de97290cb41c4f862ab88f48cda3d4a (diff) | |
download | astro-e086a9f8c8351f22b7d956551e308a62b3e0564e.tar.gz astro-e086a9f8c8351f22b7d956551e308a62b3e0564e.tar.zst astro-e086a9f8c8351f22b7d956551e308a62b3e0564e.zip |
[ci] format
Diffstat (limited to 'packages/db/src/runtime/index.ts')
-rw-r--r-- | packages/db/src/runtime/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/db/src/runtime/index.ts b/packages/db/src/runtime/index.ts index 22958c7da..a7952e148 100644 --- a/packages/db/src/runtime/index.ts +++ b/packages/db/src/runtime/index.ts @@ -1,3 +1,4 @@ +import { LibsqlError } from '@libsql/client'; import { type ColumnBuilderBaseConfig, type ColumnDataType, sql } from 'drizzle-orm'; import type { LibSQLDatabase } from 'drizzle-orm/libsql'; import { @@ -9,10 +10,9 @@ import { sqliteTable, text, } from 'drizzle-orm/sqlite-core'; +import { SEED_DEFAULT_EXPORT_ERROR, SEED_ERROR } from '../core/errors.js'; import { type DBColumn, type DBTable } from '../core/types.js'; import { type SerializedSQL, isSerializedSQL } from './types.js'; -import { SEED_DEFAULT_EXPORT_ERROR, SEED_ERROR } from '../core/errors.js'; -import { LibsqlError } from '@libsql/client'; export { sql }; export type SqliteDB = LibSQLDatabase; |