fix(core): use shared app node import (#38181)

Co-authored-by: Simon Klee <hello@simonklee.dk>
This commit is contained in:
opencode-agent[bot] 2026-07-21 15:08:53 -05:00 committed by GitHub
parent e8d273ae5b
commit 128e2550ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
export * as CodeMode from "./codemode"
import { Context, Effect, Layer, Scope } from "effect"
import { makeLocationNode } from "./effect/app-node"
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
import { PermissionV2 } from "./permission"
import { ExecuteTool } from "./tool/execute"
import { permission, registrationEntries, type AnyTool } from "./tool/tool"

View file

@ -1,9 +1,9 @@
export * as CodeModeInstructions from "./instructions"
import { Context, Effect, Layer, Schema } from "effect"
import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
import { AgentV2 } from "../agent"
import { CodeMode } from "../codemode"
import { makeLocationNode } from "../effect/app-node"
import { Instructions } from "../instructions/index"
export interface Interface {