From 92334eccb75a8bb973e806fc228dcdeece42882a Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Thu, 12 Feb 2026 22:57:43 -0500 Subject: [PATCH] sync --- packages/opencode/src/storage/db.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/opencode/src/storage/db.ts b/packages/opencode/src/storage/db.ts index a0ac11559b..50aa76384e 100644 --- a/packages/opencode/src/storage/db.ts +++ b/packages/opencode/src/storage/db.ts @@ -11,8 +11,6 @@ import { NamedError } from "@opencode-ai/util/error" import z from "zod" import path from "path" import { readFileSync, readdirSync } from "fs" -import fs from "fs/promises" -import { Instance } from "@/project/instance" import * as schema from "./schema" declare const OPENCODE_MIGRATIONS: { sql: string; timestamp: number }[] | undefined @@ -28,7 +26,7 @@ const log = Log.create({ service: "db" }) export namespace Database { type Schema = typeof schema - export type Transaction = SQLiteTransaction<"sync", void, Schema, Schema> + export type Transaction = SQLiteTransaction<"sync", void, Schema> type Client = SQLiteBunDatabase