refactor(server): extract Hono-coupled utilities to backend-neutral modules (#25542)

This commit is contained in:
Kit Langton
2026-05-03 12:58:34 +00:00
committed by GitHub
parent d1f597b5b5
commit ca75ac6681
15 changed files with 265 additions and 233 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { Hono } from "hono"
import type { UpgradeWebSocket } from "hono/ws"
import * as Log from "@opencode-ai/core/util/log"
import * as Fence from "./fence"
import * as Fence from "./shared/fence"
import type { WorkspaceID } from "@/control-plane/schema"
import { Workspace } from "@/control-plane/workspace"
import { AppRuntime } from "@/effect/app-runtime"